UNPKG

343 BTypeScriptView Raw
1import { GraphQLSchema } from 'graphql';
2import { Transform } from '@graphql-tools/utils';
3export default class RemoveObjectFieldDirectives implements Transform {
4 private readonly transformer;
5 constructor(directiveName: string | RegExp, args?: Record<string, any>);
6 transformSchema(originalSchema: GraphQLSchema): GraphQLSchema;
7}