Closed
Description
Since the schema language now allows directives, makeExecutableSchema
should pass on the directives
argument to the GraphQLSchema
constructor.
type GraphQLSchemaConfig = {
query: GraphQLObjectType;
mutation?: ?GraphQLObjectType;
subscription?: ?GraphQLObjectType;
types?: ?Array<GraphQLNamedType>;
directives?: ?Array<GraphQLDirective>;
};