introspectSchema.d.ts 279 B

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