@escape.tech/graphql-armor-max-tokens
This plugin will limit the number of tokens in a GraphQL operation.
Getting Started
npm install @escape.tech/graphql-armor-max-tokens
yarn add @escape.tech/graphql-armor-max-tokens
Usage example
With @envelop/core
from @the-guild-org
import { envelop } from '@envelop/core';
import { maxTokensPlugin } from '@escape.tech/graphql-armor-max-tokens';
const getEnveloped = envelop({
plugins: [
maxTokensPlugin({
maxTokenCount: 1000,
}),
]
})
Design considerations
This plugin relies on a parser plugin to works and access query from the context.
This should be supported by the engine you use.
If you experience any issues, please open an issue.