blob: d6cae4addb8c148b9b20a9a9ed53efca584100fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.UniqueVariableNamesRule = UniqueVariableNamesRule;
var _GraphQLError = require("../../error/GraphQLError.js");
/**
* Unique variable names
*
* A GraphQL operation is only valid if all its variables are uniquely named.
*/
function UniqueVariableNamesRule(context) {
var knownVariableNames = Object.create(null);
return {
OperationDefinition: function OperationDefinition() {
knownVariableNames = Object.create(null);
},
VariableDefinition: function VariableDefinition(node) {
var variableName = node.variable.name.value;
if (knownVariableNames[variableName]) {
context.reportError(new _GraphQLError.GraphQLError("There can be only one variable named \"$".concat(variableName, "\"."), [knownVariableNames[variableName], node.variable.name]));
} else {
knownVariableNames[variableName] = node.variable.name;
}
}
};
}
|