graphql
Version:
A Query Language and Runtime which can target any service.
6 lines (5 loc) • 329 B
TypeScript
import type { GraphQLNamedType } from '../type/definition';
import type { GraphQLSchema } from '../type/schema';
export declare function printSchema(schema: GraphQLSchema): string;
export declare function printIntrospectionSchema(schema: GraphQLSchema): string;
export declare function printType(type: GraphQLNamedType): string;