UNPKG

@kamilkisiela/graphql-tools

Version:

Useful tools to create and manipulate GraphQL schemas.

7 lines (6 loc) 279 B
import { GraphQLSchema } from 'graphql'; import { ApolloLink } from 'apollo-link'; import { Fetcher } from './makeRemoteExecutableSchema'; export default function introspectSchema(fetcher: ApolloLink | Fetcher, linkContext?: { [key: string]: any; }): Promise<GraphQLSchema>;