UNPKG

@graphql-mesh/transform-prune

Version:
9 lines (8 loc) 385 B
import type { GraphQLSchema } from 'graphql'; import type { MeshTransform, MeshTransformOptions, YamlConfig } from '@graphql-mesh/types'; export default class PruneTransform implements MeshTransform { private options; noWrap: boolean; constructor(options: MeshTransformOptions<YamlConfig.PruneTransformConfig>); transformSchema(schema: GraphQLSchema): GraphQLSchema; }