mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 12:41:54 +03:00
bbaf619f63
swc_bundler: - [x] Fix wrapped esms. (denoland/deno#9307) - [x] Make test secure.
29 lines
820 B
TypeScript
29 lines
820 B
TypeScript
// Loaded from https://deno.land/x/graphql_deno@v15.0.0/lib/validation/rules/UniqueFragmentNamesRule.js
|
|
|
|
|
|
import { GraphQLError } from '../../error/GraphQLError.js';
|
|
|
|
/**
|
|
* Unique fragment names
|
|
*
|
|
* A GraphQL document is only valid if all defined fragments have unique names.
|
|
*/
|
|
export function UniqueFragmentNamesRule(context) {
|
|
const knownFragmentNames = Object.create(null);
|
|
return {
|
|
OperationDefinition: () => false,
|
|
|
|
FragmentDefinition(node) {
|
|
const fragmentName = node.name.value;
|
|
|
|
if (knownFragmentNames[fragmentName]) {
|
|
context.reportError(new GraphQLError(`There can be only one fragment named "${fragmentName}".`, [knownFragmentNames[fragmentName], node.name]));
|
|
} else {
|
|
knownFragmentNames[fragmentName] = node.name;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
};
|
|
} |