federation/gateway/node_modules/graphql-tools/dist/stitching/introspectSchema.d.ts
2020-11-14 16:43:58 +01:00

6 lines
279 B
TypeScript

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>;