From 99c1d9af689e5325f3cf535c4007b3aeb8325229 Mon Sep 17 00:00:00 2001 From: Minteck Date: Tue, 10 Jan 2023 14:54:04 +0100 Subject: Update - This is an automated commit --- .../graphql/utilities/buildClientSchema.d.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 school/node_modules/graphql/utilities/buildClientSchema.d.ts (limited to 'school/node_modules/graphql/utilities/buildClientSchema.d.ts') diff --git a/school/node_modules/graphql/utilities/buildClientSchema.d.ts b/school/node_modules/graphql/utilities/buildClientSchema.d.ts new file mode 100644 index 0000000..a541cd3 --- /dev/null +++ b/school/node_modules/graphql/utilities/buildClientSchema.d.ts @@ -0,0 +1,20 @@ +import { GraphQLSchema, GraphQLSchemaValidationOptions } from '../type/schema'; + +import { IntrospectionQuery } from './getIntrospectionQuery'; + +/** + * Build a GraphQLSchema for use by client tools. + * + * Given the result of a client running the introspection query, creates and + * returns a GraphQLSchema instance which can be then used with all graphql-js + * tools, but cannot be used to execute a query, as introspection does not + * represent the "resolver", "parse" or "serialize" functions or any other + * server-internal mechanisms. + * + * This function expects a complete introspection result. Don't forget to check + * the "errors" field of a server response before calling this function. + */ +export function buildClientSchema( + introspection: IntrospectionQuery, + options?: GraphQLSchemaValidationOptions, +): GraphQLSchema; -- cgit