postgraphile
Version:
Automatic, high performance, and highly customizable GraphQL API for PostgreSQL
16 lines • 587 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PgMinifySchemaPreset = void 0;
const graphile_build_1 = require("graphile-build");
const graphile_build_pg_1 = require("graphile-build-pg");
/**
* [EXPERIMENTAL] Minifies a schema for exporting by stripping documentation
* and deprecation info from the schema, and removing extensions from the
* registry.
*
* @experimental
*/
exports.PgMinifySchemaPreset = {
plugins: [graphile_build_pg_1.PgRegistryReductionPlugin, graphile_build_1.MinifySchemaPlugin],
};
//# sourceMappingURL=minify.js.map