2.0.1 • Published 1 year ago

@spear-ai/graphile-sort-schema-plugin v2.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

@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,
  ],
};