UNPKG

279 BTypeScriptView Raw
1import { GraphQLSchema } from 'graphql';
2import { ApolloLink } from 'apollo-link';
3import { Fetcher } from './makeRemoteExecutableSchema';
4export default function introspectSchema(fetcher: ApolloLink | Fetcher, linkContext?: {
5 [key: string]: any;
6}): Promise<GraphQLSchema>;