mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
29 lines
868 B
TypeScript
29 lines
868 B
TypeScript
// Loaded from https://deno.land/x/graphql_deno@v15.0.0/lib/validation/rules/UniqueVariableNamesRule.js
|
|
|
|
|
|
import { GraphQLError } from '../../error/GraphQLError.js';
|
|
|
|
/**
|
|
* Unique variable names
|
|
*
|
|
* A GraphQL operation is only valid if all its variables are uniquely named.
|
|
*/
|
|
export function UniqueVariableNamesRule(context) {
|
|
let knownVariableNames = Object.create(null);
|
|
return {
|
|
OperationDefinition() {
|
|
knownVariableNames = Object.create(null);
|
|
},
|
|
|
|
VariableDefinition(node) {
|
|
const variableName = node.variable.name.value;
|
|
|
|
if (knownVariableNames[variableName]) {
|
|
context.reportError(new GraphQLError(`There can be only one variable named "$${variableName}".`, [knownVariableNames[variableName], node.variable.name]));
|
|
} else {
|
|
knownVariableNames[variableName] = node.variable.name;
|
|
}
|
|
}
|
|
|
|
};
|
|
} |