github-pages-deploy-action/node_modules/graphql/utilities/lexicographicSortSchema.d.ts

9 lines
229 B
TypeScript
Raw Normal View History

2020-03-07 11:45:40 +08:00
import { GraphQLSchema } from '../type/schema';
/**
* Sort GraphQLSchema.
*
* This function returns a sorted copy of the given GraphQLSchema.
*/
export function lexicographicSortSchema(schema: GraphQLSchema): GraphQLSchema;