import type { GraphQLArgument, GraphQLField, GraphQLInputField } from 'graphql'; export type Field = (GraphQLField | GraphQLInputField) & { args?: GraphQLArgument[]; defaultValue?: any; };