UNPKG

pothos-query-generator

Version:
62 lines (61 loc) 2.67 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.PothosQueryGeneratorPlugin = void 0; const core_1 = __importStar(require("@pothos/core")); require("./global-types.js"); const fs_1 = require("fs"); const path_1 = __importDefault(require("path")); const graphql_auto_query_1 = require("graphql-auto-query"); /** * A plugin for Pothos that generates GraphQL queries using graphql-auto-query. * @template Types - The schema types. */ class PothosQueryGeneratorPlugin extends core_1.BasePlugin { afterBuild(schema) { const builder = this.builder; const output = builder.options.pothosQueryGenerator?.output; const depth = builder.options.pothosQueryGenerator?.depth; if (output) { const targetDir = path_1.default.dirname(output); fs_1.promises.mkdir(targetDir, { recursive: true }) .catch(() => undefined) .then(() => { fs_1.promises.writeFile(output, (0, graphql_auto_query_1.generate)(schema, depth)); }); } return schema; } } exports.PothosQueryGeneratorPlugin = PothosQueryGeneratorPlugin; const pluginName = "pothosQueryGenerator"; const allowPluginReRegistration = core_1.default.allowPluginReRegistration; core_1.default.allowPluginReRegistration = true; core_1.default.registerPlugin(pluginName, PothosQueryGeneratorPlugin); core_1.default.allowPluginReRegistration = allowPluginReRegistration; exports.default = pluginName;