import { GraphQLError } from '../../error/GraphQLError';
import type { ASTVisitor } from '../../language/visitor';
import type { ASTValidationContext } from '../ValidationContext';
export function UniqueFragmentNamesRule(
context: ASTValidationContext,
): ASTVisitor {
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}".`,
{ nodes: [knownFragmentNames[fragmentName], node.name] },
),
);
} else {
knownFragmentNames[fragmentName] = node.name;
}
return false;
},
};
}