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