Files
Job_App/node_modules/graphql-tools/dist/stitching/introspectSchema.d.ts
2025-03-28 12:30:19 +11:00

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