@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`.
4 lines (3 loc) • 321 B
TypeScript
import { IMiddleware, IMiddlewareGenerator } from 'graphql-middleware';
import type { Plugin } from '@envelop/core';
export declare const useGraphQLMiddleware: <TSource = any, TContext = any, TArgs = any>(middlewares: (IMiddleware<TSource, TContext, TArgs> | IMiddlewareGenerator<TSource, TContext, TArgs>)[]) => Plugin;