UNPKG

@envelop/graphql-modules

Version:

This plugins integrates [`graphql-modules`](https://github.com/Urigo/graphql-modules) execution lifecycle into the GraphQL execution flow.

46 lines (45 loc) 1.37 kB
const graphqlModulesControllerSymbol = Symbol('GRAPHQL_MODULES'); function destroy(context) { if (context.contextValue?.[graphqlModulesControllerSymbol]) { context.contextValue[graphqlModulesControllerSymbol].destroy(); context.contextValue[graphqlModulesControllerSymbol] = null; } } export const useGraphQLModules = (app) => { return { onPluginInit({ setSchema }) { setSchema(app.schema); }, onContextBuilding({ extendContext, context }) { const controller = app.createOperationController({ context, autoDestroy: false, }); extendContext({ ...controller.context, [graphqlModulesControllerSymbol]: controller, }); }, onExecute({ args }) { return { onExecuteDone() { destroy(args); }, }; }, onSubscribe({ args }) { return { onSubscribeResult({ args }) { return { onEnd() { destroy(args); }, }; }, onSubscribeError() { destroy(args); }, }; }, }; };