1.0.0 • Published 2 years ago

pothos-schema-exporter v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years 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

2 years ago

0.0.5

2 years ago

0.0.6

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago