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