UNPKG

@graphql-mesh/transform-replace-field

Version:
12 lines (11 loc) 472 B
import type { GraphQLSchema } from 'graphql'; import type { MeshTransform, MeshTransformOptions, YamlConfig } from '@graphql-mesh/types'; export default class ReplaceFieldTransform implements MeshTransform { noWrap: boolean; private baseDir; private typeDefs; private replacementsMap; private importFn; constructor(options: MeshTransformOptions<YamlConfig.ReplaceFieldTransformConfig>); transformSchema(schema: GraphQLSchema): GraphQLSchema; }