lexicographicSortSchema.d.ts 241 B

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