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