useFragmentArguments
Package name | Weekly Downloads | Version | License | Updated |
---|---|---|---|---|
@envelop/fragment-arguments | Oct 16th, 2023 |
@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
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()
]
})