UNPKG

229 BTypeScriptView Raw
1import { GraphQLSchema } from '../type/schema';
2
3/**
4 * Sort GraphQLSchema.
5 *
6 * This function returns a sorted copy of the given GraphQLSchema.
7 */
8export function lexicographicSortSchema(schema: GraphQLSchema): GraphQLSchema;