UNPKG

@envelop/fragment-arguments

Version:

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

6 lines (5 loc) 331 B
import type { DocumentNode, Source } from 'graphql'; import type { ParseOptions } from 'graphql/language/parser'; import type { Plugin } from '@envelop/core'; export declare function parseWithFragmentArguments(source: string | Source, options?: ParseOptions): DocumentNode; export declare const useFragmentArguments: () => Plugin;