@envelop/depth-limit
v4.0.0
Published
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).
Downloads
66,955
Readme
@envelop/depth-limit
This plugins uses graphql-depth-limit
in
order to limit the depth of executed selection sets (by injecting a new GraphQL validation rule into
your execution).
Getting Started
yarn add @envelop/depth-limit
Usage Example
import { execute, parse, specifiedRules, subscribe, validate } from 'graphql'
import { envelop, useEngine } from '@envelop/core'
import { useDepthLimit } from '@envelop/depth-limit'
const getEnveloped = envelop({
plugins: [
useEngine({ parse, validate, specifiedRules, execute, subscribe }),
// ... other plugins ...
useDepthLimit({
maxDepth: 10
// ignore: [ ... ] - you can set this to ignore specific fields or types
})
]
})
Notes
You can find more details here: https://www.npmjs.com/package/graphql-depth-limit#documentation