UNPKG

@graphql-mesh/transform-prefix

Version:
12 lines (11 loc) 466 B
import type { GraphQLSchema } from 'graphql'; import type { MeshTransform, MeshTransformOptions, YamlConfig } from '@graphql-mesh/types'; export default class BarePrefix implements MeshTransform { noWrap: boolean; private ignoreList; private includeRootOperations; private includeTypes; private prefix; constructor(options: MeshTransformOptions<YamlConfig.PrefixTransformConfig>); transformSchema(schema: GraphQLSchema): GraphQLSchema; }