@envelop/fragment-arguments
Version:
This plugins replaces the default GraphQL `parser` with an extended version that supports setting arguments on fragments.
19 lines (18 loc) • 699 B
JavaScript
import { FragmentArgumentCompatibleParser } from './extended-parser.js';
import { applySelectionSetFragmentArguments } from './utils.js';
export function parseWithFragmentArguments(source, options) {
const parser = new FragmentArgumentCompatibleParser(source, options);
return parser.parseDocument();
}
export const useFragmentArguments = () => {
return {
onParse({ setParseFn }) {
setParseFn(parseWithFragmentArguments);
return ({ result, replaceParseResult }) => {
if (result && 'kind' in result) {
replaceParseResult(applySelectionSetFragmentArguments(result));
}
};
},
};
};