UNPKG

graphql-yoga

Version:
25 lines (24 loc) 639 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.createSchema = void 0; const schema_1 = require("@graphql-tools/schema"); function createSchema(opts) { return (0, schema_1.makeExecutableSchema)({ ...opts, typeDefs: [ /* GraphQL */ ` directive @defer( if: Boolean label: String ) on FRAGMENT_SPREAD | INLINE_FRAGMENT directive @stream( if: Boolean label: String initialCount: Int = 0 ) on FIELD `, opts.typeDefs, ], }); } exports.createSchema = createSchema;