A Graphile plugin to lexicographically sort your schema.
yarn add -D @spear-ai/graphile-sort-schema-plugin
Add the plugin to your graphile preset:
import { sortSchemaPlugin } from "@spear-ai/graphile-sort-schema-plugin";
const createPreset: GraphileConfig.Preset = {
// …
plugins: [
// …
sortSchemaPlugin,
],
};