UNPKG

@envelop/fragment-arguments

Version:

This plugins replaces the default GraphQL `parser` with an extended version that supports setting arguments on fragments.

31 lines (22 loc) 734 B
## `@envelop/fragment-arguments` This plugins replaces the default GraphQL `parser` with an extended version that supports setting arguments on fragments. For reference, see: https://github.com/graphql/graphql-js/pull/3152 PLEASE DON'T USE THIS IN PRODUCTION! ## Getting Started ``` yarn add @envelop/fragment-arguments ``` ## Usage Example ```ts import { execute, parse, specifiedRules, subscribe, validate } from 'graphql' import { envelop, useEngine } from '@envelop/core' import { useFragmentArguments } from '@envelop/fragment-arguments' const getEnveloped = envelop({ plugins: [ useEngine({ parse, validate, specifiedRules, execute, subscribe }), // ... other plugins ... useFragmentArguments() ] }) ```