@graphql-tools/wrap
Version:
A set of utils for faster development of GraphQL tools
5 lines (4 loc) • 594 B
text/typescript
import { GraphQLSchema, buildClientSchema, IntrospectionOptions, ParseOptions } from 'graphql';
import { AsyncExecutor, SyncExecutor } from '@graphql-tools/utils';
export declare function introspectSchema(executor: SyncExecutor, context?: Record<string, any>, options?: Partial<IntrospectionOptions> & Parameters<typeof buildClientSchema>[1] & ParseOptions): GraphQLSchema;
export declare function introspectSchema(executor: AsyncExecutor, context?: Record<string, any>, options?: Partial<IntrospectionOptions> & Parameters<typeof buildClientSchema>[1] & ParseOptions): Promise<GraphQLSchema>;