mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
38 lines
974 B
JavaScript
38 lines
974 B
JavaScript
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.UniqueArgumentNamesRule = UniqueArgumentNamesRule;
|
||
|
|
||
|
var _GraphQLError = require("../../error/GraphQLError");
|
||
|
|
||
|
/**
|
||
|
* Unique argument names
|
||
|
*
|
||
|
* A GraphQL field or directive is only valid if all supplied arguments are
|
||
|
* uniquely named.
|
||
|
*/
|
||
|
function UniqueArgumentNamesRule(context) {
|
||
|
var knownArgNames = Object.create(null);
|
||
|
return {
|
||
|
Field: function Field() {
|
||
|
knownArgNames = Object.create(null);
|
||
|
},
|
||
|
Directive: function Directive() {
|
||
|
knownArgNames = Object.create(null);
|
||
|
},
|
||
|
Argument: function Argument(node) {
|
||
|
var argName = node.name.value;
|
||
|
|
||
|
if (knownArgNames[argName]) {
|
||
|
context.reportError(new _GraphQLError.GraphQLError("There can be only one argument named \"".concat(argName, "\"."), [knownArgNames[argName], node.name]));
|
||
|
} else {
|
||
|
knownArgNames[argName] = node.name;
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
}
|
||
|
};
|
||
|
}
|