UNPKG

@graphql-codegen/introspection

Version:

GraphQL Code Generator plugin for generating an introspection JSON file for a GraphQLSchema

24 lines (23 loc) 1.21 kB
import { extname } from 'path'; import { removeFederation } from '@graphql-codegen/plugin-helpers'; import { getConfigValue } from '@graphql-codegen/visitor-plugin-common'; import { introspectionFromSchema } from 'graphql'; export const plugin = async (schema, _documents, pluginConfig) => { const cleanSchema = pluginConfig.federation ? removeFederation(schema) : schema; const descriptions = getConfigValue(pluginConfig.descriptions, true); const directiveIsRepeatable = getConfigValue(pluginConfig.directiveIsRepeatable, true); const schemaDescription = getConfigValue(pluginConfig.schemaDescription, undefined); const specifiedByUrl = getConfigValue(pluginConfig.specifiedByUrl, undefined); const introspection = introspectionFromSchema(cleanSchema, { descriptions, directiveIsRepeatable, schemaDescription, specifiedByUrl, }); return pluginConfig.minify ? JSON.stringify(introspection) : JSON.stringify(introspection, null, 2); }; export const validate = async (schema, documents, config, outputFile) => { if (extname(outputFile) !== '.json') { throw new Error(`Plugin "introspection" requires extension to be ".json"!`); } };