UNPKG

@graphql-mesh/cli

Version:
34 lines (33 loc) 1.21 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getGraphQLWSOptions = getGraphQLWSOptions; function getGraphQLWSOptions(getBuiltMesh) { return { execute: (args) => args.rootValue.execute(args), subscribe: (args) => args.rootValue.subscribe(args), onSubscribe: async (ctx, _id, params) => { const { getEnveloped } = await getBuiltMesh(); const { schema, execute, subscribe, contextFactory, parse, validate } = getEnveloped({ ...ctx, req: ctx.extra.request, socket: ctx.extra.socket, params, }); const args = { schema, operationName: params.operationName, document: parse(params.query), variableValues: params.variables, contextValue: await contextFactory(), rootValue: { execute, subscribe, }, }; const errors = validate(args.schema, args.document); if (errors.length) return errors; return args; }, }; }