@graphql-codegen/schema-ast
Version:
GraphQL Code Generator plugin for generating a .graphql file from a given schema
51 lines (50 loc) • 2.23 kB
JavaScript
import { extname } from 'path';
import { getCachedDocumentNodeFromSchema, removeFederation, } from '@graphql-codegen/plugin-helpers';
import { buildASTSchema, extendSchema, parse, print, printIntrospectionSchema, printSchema, visit, } from 'graphql';
export const plugin = async (schema, _documents, { commentDescriptions = false, includeDirectives = false, includeIntrospectionTypes = false, sort = false, federation, }) => {
const transformedSchemaAndAst = transformSchemaAST(schema, { sort, federation, includeIntrospectionTypes });
return [
includeIntrospectionTypes ? printIntrospectionSchema(transformedSchemaAndAst.schema) : null,
includeDirectives
? print(transformedSchemaAndAst.ast)
: printSchema(transformedSchemaAndAst.schema, { commentDescriptions }),
]
.filter(Boolean)
.join('\n');
};
export const validate = async (_schema, _documents, _config, outputFile, allPlugins) => {
const singlePlugin = allPlugins.length === 1;
const allowedExtensions = ['.graphql', '.gql'];
const isAllowedExtension = allowedExtensions.includes(extname(outputFile));
if (singlePlugin && !isAllowedExtension) {
const allowedExtensionsOutput = allowedExtensions.map(extension => `"${extension}"`).join(' or ');
throw new Error(`Plugin "schema-ast" requires extension to be ${allowedExtensionsOutput}!`);
}
};
export function transformSchemaAST(schema, config) {
schema = config.federation ? removeFederation(schema) : schema;
if (config.includeIntrospectionTypes) {
// See: https://spec.graphql.org/June2018/#sec-Schema-Introspection
const introspectionAST = parse(`
extend type Query {
__schema: __Schema!
__type(name: String!): __Type
}
`);
schema = extendSchema(schema, introspectionAST);
}
let ast = getCachedDocumentNodeFromSchema(schema);
ast = config.disableDescriptions
? visit(ast, {
leave: node => ({
...node,
description: undefined,
}),
})
: ast;
schema = config.disableDescriptions ? buildASTSchema(ast) : schema;
return {
schema,
ast,
};
}