UNPKG

@envelop/depth-limit

Version:

This plugins uses [`graphql-depth-limit`](https://www.npmjs.com/package/graphql-depth-limit) in order to limit the depth of executed selection sets (by injecting a new GraphQL validation rule into your execution).

7 lines (6 loc) 195 B
import { Plugin } from '@envelop/core'; export type DepthLimitConfig = { maxDepth: number; ignore?: string[]; }; export declare const useDepthLimit: (config: DepthLimitConfig) => Plugin;