mirror of
https://github.com/rjNemo/federation
synced 2026-06-09 19:46:40 +00:00
8 lines
229 B
TypeScript
8 lines
229 B
TypeScript
import { GraphQLSchema } from '../type/schema';
|
|
|
|
/**
|
|
* Sort GraphQLSchema.
|
|
*
|
|
* This function returns a sorted copy of the given GraphQLSchema.
|
|
*/
|
|
export function lexicographicSortSchema(schema: GraphQLSchema): GraphQLSchema;
|