123456789101112131415161718 |
- import type { GraphQLSchema } from '../type/schema';
- import type {
- IntrospectionOptions,
- IntrospectionQuery,
- } from './getIntrospectionQuery';
- export declare function introspectionFromSchema(
- schema: GraphQLSchema,
- options?: IntrospectionOptions,
- ): IntrospectionQuery;
|