@graphql-inspector/action
Version:
GraphQL Inspector functionality for GitHub Actions
4 lines (3 loc) • 314 B
text/typescript
import { GraphQLField, GraphQLInterfaceType, GraphQLObjectType } from 'graphql';
import { AddChange } from './schema.cjs';
export declare function changesInField(type: GraphQLObjectType | GraphQLInterfaceType, oldField: GraphQLField<any, any> | null, newField: GraphQLField<any, any>, addChange: AddChange): void;