summaryrefslogtreecommitdiff
path: root/includes/external/school/node_modules/graphql/validation/rules/ScalarLeafsRule.mjs
diff options
context:
space:
mode:
authorRaindropsSys <contact@minteck.org>2023-06-22 23:06:12 +0200
committerRaindropsSys <contact@minteck.org>2023-06-22 23:06:12 +0200
commit23563c7188e089929b60f9e10721c6fc43a220ff (patch)
treeedfe2b009c82900d4ac27db02222d2f68dcad846 /includes/external/school/node_modules/graphql/validation/rules/ScalarLeafsRule.mjs
parent7a7a49332df7c852abbaa33c7e8e87f93d064d61 (diff)
downloadpluralconnect-23563c7188e089929b60f9e10721c6fc43a220ff.tar.gz
pluralconnect-23563c7188e089929b60f9e10721c6fc43a220ff.tar.bz2
pluralconnect-23563c7188e089929b60f9e10721c6fc43a220ff.zip
Updated 15 files, added includes/maintenance/deleteUnusedAssets.php and deleted 4944 files (automated)
Diffstat (limited to 'includes/external/school/node_modules/graphql/validation/rules/ScalarLeafsRule.mjs')
-rw-r--r--includes/external/school/node_modules/graphql/validation/rules/ScalarLeafsRule.mjs34
1 files changed, 0 insertions, 34 deletions
diff --git a/includes/external/school/node_modules/graphql/validation/rules/ScalarLeafsRule.mjs b/includes/external/school/node_modules/graphql/validation/rules/ScalarLeafsRule.mjs
deleted file mode 100644
index 8a5111d..0000000
--- a/includes/external/school/node_modules/graphql/validation/rules/ScalarLeafsRule.mjs
+++ /dev/null
@@ -1,34 +0,0 @@
-import inspect from "../../jsutils/inspect.mjs";
-import { GraphQLError } from "../../error/GraphQLError.mjs";
-import { getNamedType, isLeafType } from "../../type/definition.mjs";
-
-/**
- * Scalar leafs
- *
- * A GraphQL document is valid only if all leaf fields (fields without
- * sub selections) are of scalar or enum types.
- */
-export function ScalarLeafsRule(context) {
- return {
- Field: function Field(node) {
- var type = context.getType();
- var selectionSet = node.selectionSet;
-
- if (type) {
- if (isLeafType(getNamedType(type))) {
- if (selectionSet) {
- var fieldName = node.name.value;
- var typeStr = inspect(type);
- context.reportError(new GraphQLError("Field \"".concat(fieldName, "\" must not have a selection since type \"").concat(typeStr, "\" has no subfields."), selectionSet));
- }
- } else if (!selectionSet) {
- var _fieldName = node.name.value;
-
- var _typeStr = inspect(type);
-
- context.reportError(new GraphQLError("Field \"".concat(_fieldName, "\" of type \"").concat(_typeStr, "\" must have a selection of subfields. Did you mean \"").concat(_fieldName, " { ... }\"?"), node));
- }
- }
- }
- };
-}