This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
admin-panel/graphql-types/node_modules/@graphql-tools/wrap/transforms/RemoveObjectFieldDeprecations.d.ts

9 lines
453 B
TypeScript

import { GraphQLSchema } from 'graphql';
import { SubschemaConfig, Transform } from '@graphql-tools/delegate';
export default class RemoveObjectFieldDeprecations implements Transform {
private readonly removeDirectives;
private readonly removeDeprecations;
constructor(reason: string | RegExp);
transformSchema(originalWrappingSchema: GraphQLSchema, subschemaConfig: SubschemaConfig, transformedSchema?: GraphQLSchema): GraphQLSchema;
}