1.0.0 • Published 8 months ago

pothos-schema-exporter v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

pothos-schema-exporter

Plugin to output 'schema.graphql' from pothos to file

usage

Set the output path to output

import PothosSchemaExporter from "pothos-schema-exporter";

export const builder = new SchemaBuilder({
  plugins: [PothosSchemaExporter],
  pothosSchemaExporter: {
    output: "schema.graphql",
  },
});

If undefined,null,false is set, no file will be output

import PothosSchemaExporter from "pothos-schema-exporter";

export const builder = new SchemaBuilder({
  plugins: [PothosSchemaExporter],
  pothosSchemaExporter: {
    output:
      process.env.NODE_ENV === "development" &&
      path.join(process.cwd(), "graphql", "schema.graphql"),
  },
});
1.0.0

8 months ago

0.0.5

8 months ago

0.0.6

8 months ago

0.0.4

9 months ago

0.0.3

9 months ago

0.0.2

9 months ago

0.0.1

9 months ago