UNPKG

postgraphile

Version:

Automatic, high performance, and highly customizable GraphQL API for PostgreSQL

23 lines 707 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PgV4BuildPlugin = void 0; require("graphile-config"); require("graphile-build"); require("graphile-build-pg"); exports.PgV4BuildPlugin = { name: "PgV4BuildPlugin", description: "For compatibility with PostGraphile v4 schemas, this plugin restores some properties removed from `build`", version: "0.0.0", schema: { hooks: { build: { after: ["PgBasicsPlugin"], callback(build) { build.pgSql = build.sql; return build; }, }, }, }, }; //# sourceMappingURL=PgV4BuildPlugin.js.map