mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
bbaf619f63
swc_bundler: - [x] Fix wrapped esms. (denoland/deno#9307) - [x] Make test secure.
24 lines
659 B
TypeScript
24 lines
659 B
TypeScript
// Loaded from https://deno.land/x/graphql_deno@v15.0.0/lib/validation/rules/KnownFragmentNamesRule.js
|
|
|
|
|
|
import { GraphQLError } from '../../error/GraphQLError.js';
|
|
|
|
/**
|
|
* Known fragment names
|
|
*
|
|
* A GraphQL document is only valid if all `...Fragment` fragment spreads refer
|
|
* to fragments defined in the same document.
|
|
*/
|
|
export function KnownFragmentNamesRule(context) {
|
|
return {
|
|
FragmentSpread(node) {
|
|
const fragmentName = node.name.value;
|
|
const fragment = context.getFragment(fragmentName);
|
|
|
|
if (!fragment) {
|
|
context.reportError(new GraphQLError(`Unknown fragment "${fragmentName}".`, node.name));
|
|
}
|
|
}
|
|
|
|
};
|
|
} |