@envelop/graphql-middleware
Version:
This plugins wraps [`graphql-middleware`](https://github.com/maticzav/graphql-middleware) and allow you to apply schema middlewares that uses the standard defined by `graphql-middleware`.
20 lines (19 loc) • 763 B
JavaScript
import { applyMiddleware } from 'graphql-middleware';
const graphqlMiddlewareAppliedTransformSymbol = Symbol('graphqlMiddleware.appliedTransform');
export const useGraphQLMiddleware = (middlewares) => {
return {
onSchemaChange({ schema, replaceSchema }) {
if (schema.extensions?.[graphqlMiddlewareAppliedTransformSymbol]) {
return;
}
if (middlewares.length > 0) {
const wrappedSchema = applyMiddleware(schema, ...middlewares);
wrappedSchema.extensions = {
...schema.extensions,
[graphqlMiddlewareAppliedTransformSymbol]: true,
};
replaceSchema(wrappedSchema);
}
},
};
};