UNPKG

@graphql-codegen/core

Version:

<p align="center"> <img src="https://github.com/dotansimha/graphql-code-generator/blob/master/logo.png?raw=true" /> </p>

19 lines (18 loc) 703 B
import { Types, CodegenPlugin, Profiler } from '@graphql-codegen/plugin-helpers'; import { DocumentNode, GraphQLSchema } from 'graphql'; export interface ExecutePluginOptions { name: string; config: Types.PluginConfig; parentConfig: Types.PluginConfig; schema: DocumentNode; schemaAst?: GraphQLSchema; documents: Types.DocumentFile[]; outputFilename: string; allPlugins: Types.ConfiguredPlugin[]; skipDocumentsValidation?: Types.SkipDocumentsValidationOptions; pluginContext?: { [key: string]: any; }; profiler?: Profiler; } export declare function executePlugin(options: ExecutePluginOptions, plugin: CodegenPlugin): Promise<Types.PluginOutput>;