summaryrefslogtreecommitdiff
path: root/includes/external/school/node_modules/graphql/language/predicates.js.flow
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 /includes/external/school/node_modules/graphql/language/predicates.js.flow
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 'includes/external/school/node_modules/graphql/language/predicates.js.flow')
-rw-r--r--includes/external/school/node_modules/graphql/language/predicates.js.flow82
1 files changed, 82 insertions, 0 deletions
diff --git a/includes/external/school/node_modules/graphql/language/predicates.js.flow b/includes/external/school/node_modules/graphql/language/predicates.js.flow
new file mode 100644
index 0000000..5597dbb
--- /dev/null
+++ b/includes/external/school/node_modules/graphql/language/predicates.js.flow
@@ -0,0 +1,82 @@
+// @flow strict
+import type { ASTNode } from './ast';
+import { Kind } from './kinds';
+
+export function isDefinitionNode(node: ASTNode): boolean %checks {
+ return (
+ isExecutableDefinitionNode(node) ||
+ isTypeSystemDefinitionNode(node) ||
+ isTypeSystemExtensionNode(node)
+ );
+}
+
+export function isExecutableDefinitionNode(node: ASTNode): boolean %checks {
+ return (
+ node.kind === Kind.OPERATION_DEFINITION ||
+ node.kind === Kind.FRAGMENT_DEFINITION
+ );
+}
+
+export function isSelectionNode(node: ASTNode): boolean %checks {
+ return (
+ node.kind === Kind.FIELD ||
+ node.kind === Kind.FRAGMENT_SPREAD ||
+ node.kind === Kind.INLINE_FRAGMENT
+ );
+}
+
+export function isValueNode(node: ASTNode): boolean %checks {
+ return (
+ node.kind === Kind.VARIABLE ||
+ node.kind === Kind.INT ||
+ node.kind === Kind.FLOAT ||
+ node.kind === Kind.STRING ||
+ node.kind === Kind.BOOLEAN ||
+ node.kind === Kind.NULL ||
+ node.kind === Kind.ENUM ||
+ node.kind === Kind.LIST ||
+ node.kind === Kind.OBJECT
+ );
+}
+
+export function isTypeNode(node: ASTNode): boolean %checks {
+ return (
+ node.kind === Kind.NAMED_TYPE ||
+ node.kind === Kind.LIST_TYPE ||
+ node.kind === Kind.NON_NULL_TYPE
+ );
+}
+
+export function isTypeSystemDefinitionNode(node: ASTNode): boolean %checks {
+ return (
+ node.kind === Kind.SCHEMA_DEFINITION ||
+ isTypeDefinitionNode(node) ||
+ node.kind === Kind.DIRECTIVE_DEFINITION
+ );
+}
+
+export function isTypeDefinitionNode(node: ASTNode): boolean %checks {
+ return (
+ node.kind === Kind.SCALAR_TYPE_DEFINITION ||
+ node.kind === Kind.OBJECT_TYPE_DEFINITION ||
+ node.kind === Kind.INTERFACE_TYPE_DEFINITION ||
+ node.kind === Kind.UNION_TYPE_DEFINITION ||
+ node.kind === Kind.ENUM_TYPE_DEFINITION ||
+ node.kind === Kind.INPUT_OBJECT_TYPE_DEFINITION
+ );
+}
+
+export function isTypeSystemExtensionNode(node: ASTNode): boolean %checks {
+ return node.kind === Kind.SCHEMA_EXTENSION || isTypeExtensionNode(node);
+}
+
+export function isTypeExtensionNode(node: ASTNode): boolean %checks {
+ return (
+ node.kind === Kind.SCALAR_TYPE_EXTENSION ||
+ node.kind === Kind.OBJECT_TYPE_EXTENSION ||
+ node.kind === Kind.INTERFACE_TYPE_EXTENSION ||
+ node.kind === Kind.UNION_TYPE_EXTENSION ||
+ node.kind === Kind.ENUM_TYPE_EXTENSION ||
+ node.kind === Kind.INPUT_OBJECT_TYPE_EXTENSION
+ );
+}