summaryrefslogtreecommitdiff
path: root/school/node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.mjs
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2023-02-23 19:34:56 +0100
committerMinteck <contact@minteck.org>2023-02-23 19:34:56 +0100
commit3d1cd02f27518f1a04374c7c8320cd5d82ede6e9 (patch)
tree75be5fba4368472fb11c8015aee026b2b9a71888 /school/node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.mjs
parent8cc1f13c17fa2fb5a4410542d39e650e02945634 (diff)
downloadpluralconnect-3d1cd02f27518f1a04374c7c8320cd5d82ede6e9.tar.gz
pluralconnect-3d1cd02f27518f1a04374c7c8320cd5d82ede6e9.tar.bz2
pluralconnect-3d1cd02f27518f1a04374c7c8320cd5d82ede6e9.zip
Updated 40 files, added 37 files, deleted 1103 files and renamed 3905 files (automated)
Diffstat (limited to 'school/node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.mjs')
-rw-r--r--school/node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.mjs72
1 files changed, 0 insertions, 72 deletions
diff --git a/school/node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.mjs b/school/node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.mjs
deleted file mode 100644
index 9a3951a..0000000
--- a/school/node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.mjs
+++ /dev/null
@@ -1,72 +0,0 @@
-import { GraphQLError } from "../../error/GraphQLError.mjs";
-import { Kind } from "../../language/kinds.mjs";
-import { isTypeDefinitionNode, isTypeExtensionNode } from "../../language/predicates.mjs";
-import { specifiedDirectives } from "../../type/directives.mjs";
-
-/**
- * Unique directive names per location
- *
- * A GraphQL document is only valid if all non-repeatable directives at
- * a given location are uniquely named.
- */
-export function UniqueDirectivesPerLocationRule(context) {
- var uniqueDirectiveMap = Object.create(null);
- var schema = context.getSchema();
- var definedDirectives = schema ? schema.getDirectives() : specifiedDirectives;
-
- for (var _i2 = 0; _i2 < definedDirectives.length; _i2++) {
- var directive = definedDirectives[_i2];
- uniqueDirectiveMap[directive.name] = !directive.isRepeatable;
- }
-
- var astDefinitions = context.getDocument().definitions;
-
- for (var _i4 = 0; _i4 < astDefinitions.length; _i4++) {
- var def = astDefinitions[_i4];
-
- if (def.kind === Kind.DIRECTIVE_DEFINITION) {
- uniqueDirectiveMap[def.name.value] = !def.repeatable;
- }
- }
-
- var schemaDirectives = Object.create(null);
- var typeDirectivesMap = Object.create(null);
- return {
- // Many different AST nodes may contain directives. Rather than listing
- // them all, just listen for entering any node, and check to see if it
- // defines any directives.
- enter: function enter(node) {
- if (node.directives == null) {
- return;
- }
-
- var seenDirectives;
-
- if (node.kind === Kind.SCHEMA_DEFINITION || node.kind === Kind.SCHEMA_EXTENSION) {
- seenDirectives = schemaDirectives;
- } else if (isTypeDefinitionNode(node) || isTypeExtensionNode(node)) {
- var typeName = node.name.value;
- seenDirectives = typeDirectivesMap[typeName];
-
- if (seenDirectives === undefined) {
- typeDirectivesMap[typeName] = seenDirectives = Object.create(null);
- }
- } else {
- seenDirectives = Object.create(null);
- }
-
- for (var _i6 = 0, _node$directives2 = node.directives; _i6 < _node$directives2.length; _i6++) {
- var _directive = _node$directives2[_i6];
- var directiveName = _directive.name.value;
-
- if (uniqueDirectiveMap[directiveName]) {
- if (seenDirectives[directiveName]) {
- context.reportError(new GraphQLError("The directive \"@".concat(directiveName, "\" can only be used once at this location."), [seenDirectives[directiveName], _directive]));
- } else {
- seenDirectives[directiveName] = _directive;
- }
- }
- }
- }
- };
-}