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