summaryrefslogtreecommitdiff
path: root/school/node_modules/graphql/utilities/introspectionFromSchema.mjs
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2023-01-10 14:54:04 +0100
committerMinteck <contact@minteck.org>2023-01-10 14:54:04 +0100
commit99c1d9af689e5325f3cf535c4007b3aeb8325229 (patch)
treee663b3c2ebdbd67c818ac0c5147f0ce1d2463cda /school/node_modules/graphql/utilities/introspectionFromSchema.mjs
parent9871b03912fc28ad38b4037ebf26a78aa937baba (diff)
downloadpluralconnect-99c1d9af689e5325f3cf535c4007b3aeb8325229.tar.gz
pluralconnect-99c1d9af689e5325f3cf535c4007b3aeb8325229.tar.bz2
pluralconnect-99c1d9af689e5325f3cf535c4007b3aeb8325229.zip
Update - This is an automated commit
Diffstat (limited to 'school/node_modules/graphql/utilities/introspectionFromSchema.mjs')
-rw-r--r--school/node_modules/graphql/utilities/introspectionFromSchema.mjs36
1 files changed, 36 insertions, 0 deletions
diff --git a/school/node_modules/graphql/utilities/introspectionFromSchema.mjs b/school/node_modules/graphql/utilities/introspectionFromSchema.mjs
new file mode 100644
index 0000000..ad387eb
--- /dev/null
+++ b/school/node_modules/graphql/utilities/introspectionFromSchema.mjs
@@ -0,0 +1,36 @@
+function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
+
+function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
+
+function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
+
+import invariant from "../jsutils/invariant.mjs";
+import { parse } from "../language/parser.mjs";
+import { executeSync } from "../execution/execute.mjs";
+import { getIntrospectionQuery } from "./getIntrospectionQuery.mjs";
+/**
+ * Build an IntrospectionQuery from a GraphQLSchema
+ *
+ * IntrospectionQuery is useful for utilities that care about type and field
+ * relationships, but do not need to traverse through those relationships.
+ *
+ * This is the inverse of buildClientSchema. The primary use case is outside
+ * of the server context, for instance when doing schema comparisons.
+ */
+
+export function introspectionFromSchema(schema, options) {
+ var optionsWithDefaults = _objectSpread({
+ specifiedByUrl: true,
+ directiveIsRepeatable: true,
+ schemaDescription: true,
+ inputValueDeprecation: true
+ }, options);
+
+ var document = parse(getIntrospectionQuery(optionsWithDefaults));
+ var result = executeSync({
+ schema: schema,
+ document: document
+ });
+ !result.errors && result.data || invariant(0);
+ return result.data;
+}