UNPKG

@graphql-codegen/add

Version:

GraphQL Code Generator plugin for adding custom content to your output file

17 lines (16 loc) 680 B
import { VALID_PLACEMENTS } from './config.js'; export const plugin = async (schema, documents, config) => { const placement = config.placement || 'prepend'; const { content } = config; if (!VALID_PLACEMENTS.includes(placement)) { throw Error(`Configuration provided for 'add' plugin is invalid: value of 'placement' field is not valid (valid values are: ${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], }; }; export default { plugin };