@graphql-codegen/add
Version:
GraphQL Code Generator plugin for adding custom content to your output file
23 lines (22 loc) • 928 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.plugin = void 0;
const tslib_1 = require("tslib");
const config_js_1 = require("./config.js");
tslib_1.__exportStar(require("./config.js"), exports);
const plugin = async (schema, documents, config) => {
const placement = config.placement || 'prepend';
const { content } = config;
if (!config_js_1.VALID_PLACEMENTS.includes(placement)) {
throw Error(`Configuration provided for 'add' plugin is invalid: value of 'placement' field is not valid (valid values are: ${config_js_1.VALID_PLACEMENTS.join(', ')})`);
}
if (!content) {
throw Error(`Configuration provided for 'add' plugin is invalid: "content" is missing!`);
}
return {
content: null,
[placement]: Array.isArray(content) ? content : [content],
};
};
exports.plugin = plugin;
exports.default = { plugin: exports.plugin };
;