UNPKG

@graphql-mesh/transform-extend

Version:
10 lines (9 loc) 403 B
import { GraphQLSchema } from 'graphql'; import { MeshTransform, MeshTransformOptions, YamlConfig } from '@graphql-mesh/types'; export default class ExtendTransform implements MeshTransform { noWrap: boolean; private config; private baseDir; constructor({ baseDir, config }: MeshTransformOptions<YamlConfig.ExtendTransform>); transformSchema(schema: GraphQLSchema): GraphQLSchema; }