Skip to main content
Module

x/graphql_deno/lib/type/definition.d.ts

GraphQL-JS ported to Deno
Latest
File
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789
// FIXME/* eslint-disable import/no-cycle */
import Maybe from '../tsutils/Maybe.d.ts';import { PromiseOrValue } from '../jsutils/PromiseOrValue.d.ts';import { Path } from '../jsutils/Path.d.ts';
import { ScalarTypeDefinitionNode, ObjectTypeDefinitionNode, FieldDefinitionNode, InputValueDefinitionNode, InterfaceTypeDefinitionNode, UnionTypeDefinitionNode, EnumTypeDefinitionNode, EnumValueDefinitionNode, InputObjectTypeDefinitionNode, ObjectTypeExtensionNode, InterfaceTypeExtensionNode, OperationDefinitionNode, FieldNode, FragmentDefinitionNode, ValueNode, ScalarTypeExtensionNode, UnionTypeExtensionNode, EnumTypeExtensionNode, InputObjectTypeExtensionNode,} from '../language/ast.d.ts';
import { GraphQLSchema } from './schema.d.ts';
/** * These are all of the possible kinds of types. */export type GraphQLType = | GraphQLScalarType | GraphQLObjectType | GraphQLInterfaceType | GraphQLUnionType | GraphQLEnumType | GraphQLInputObjectType | GraphQLList<any> | GraphQLNonNull<any>;
export function isType(type: any): type is GraphQLType;
export function assertType(type: any): GraphQLType;
export function isScalarType(type: any): type is GraphQLScalarType;
export function assertScalarType(type: any): GraphQLScalarType;
export function isObjectType(type: any): type is GraphQLObjectType;
export function assertObjectType(type: any): GraphQLObjectType;
export function isInterfaceType(type: any): type is GraphQLInterfaceType;
export function assertInterfaceType(type: any): GraphQLInterfaceType;
export function isUnionType(type: any): type is GraphQLUnionType;
export function assertUnionType(type: any): GraphQLUnionType;
export function isEnumType(type: any): type is GraphQLEnumType;
export function assertEnumType(type: any): GraphQLEnumType;
export function isInputObjectType(type: any): type is GraphQLInputObjectType;
export function assertInputObjectType(type: any): GraphQLInputObjectType;
export function isListType(type: any): type is GraphQLList<any>;
export function assertListType(type: any): GraphQLList<any>;
export function isNonNullType(type: any): type is GraphQLNonNull<any>;
export function assertNonNullType(type: any): GraphQLNonNull<any>;
/** * These types may be used as input types for arguments and directives. */// TS_SPECIFIC: TS does not allow recursive type definitions, hence the `any`sexport type GraphQLInputType = | GraphQLScalarType | GraphQLEnumType | GraphQLInputObjectType | GraphQLList<any> | GraphQLNonNull< | GraphQLScalarType | GraphQLEnumType | GraphQLInputObjectType | GraphQLList<any> >;
export function isInputType(type: any): type is GraphQLInputType;
export function assertInputType(type: any): GraphQLInputType;
/** * These types may be used as output types as the result of fields. */// TS_SPECIFIC: TS does not allow recursive type definitions, hence the `any`sexport type GraphQLOutputType = | GraphQLScalarType | GraphQLObjectType | GraphQLInterfaceType | GraphQLUnionType | GraphQLEnumType | GraphQLList<any> | GraphQLNonNull< | GraphQLScalarType | GraphQLObjectType | GraphQLInterfaceType | GraphQLUnionType | GraphQLEnumType | GraphQLList<any> >;
export function isOutputType(type: any): type is GraphQLOutputType;
export function assertOutputType(type: any): GraphQLOutputType;
/** * These types may describe types which may be leaf values. */export type GraphQLLeafType = GraphQLScalarType | GraphQLEnumType;
export function isLeafType(type: any): type is GraphQLLeafType;
export function assertLeafType(type: any): GraphQLLeafType;
/** * These types may describe the parent context of a selection set. */export type GraphQLCompositeType = | GraphQLObjectType | GraphQLInterfaceType | GraphQLUnionType;
export function isCompositeType(type: any): type is GraphQLCompositeType;
export function assertCompositeType(type: any): GraphQLCompositeType;
/** * These types may describe the parent context of a selection set. */export type GraphQLAbstractType = GraphQLInterfaceType | GraphQLUnionType;
export function isAbstractType(type: any): type is GraphQLAbstractType;
export function assertAbstractType(type: any): GraphQLAbstractType;
/** * List Modifier * * A list is a kind of type marker, a wrapping type which points to another * type. Lists are often created within the context of defining the fields * of an object type. * * Example: * * const PersonType = new GraphQLObjectType({ * name: 'Person', * fields: () => ({ * parents: { type: new GraphQLList(Person) }, * children: { type: new GraphQLList(Person) }, * }) * }) * */interface GraphQLList<T extends GraphQLType> { readonly ofType: T; toString(): string; toJSON(): string; inspect(): string;}
interface _GraphQLList<T extends GraphQLType> { (type: T): GraphQLList<T>; new (type: T): GraphQLList<T>;}
export const GraphQLList: _GraphQLList<GraphQLType>;
/** * Non-Null Modifier * * A non-null is a kind of type marker, a wrapping type which points to another * type. Non-null types enforce that their values are never null and can ensure * an error is raised if this ever occurs during a request. It is useful for * fields which you can make a strong guarantee on non-nullability, for example * usually the id field of a database row will never be null. * * Example: * * const RowType = new GraphQLObjectType({ * name: 'Row', * fields: () => ({ * id: { type: new GraphQLNonNull(GraphQLString) }, * }) * }) * * Note: the enforcement of non-nullability occurs within the executor. */interface GraphQLNonNull<T extends GraphQLNullableType> { readonly ofType: T; toString(): string; toJSON(): string; inspect(): string;}
interface _GraphQLNonNull<T extends GraphQLNullableType> { (type: T): GraphQLNonNull<T>; new (type: T): GraphQLNonNull<T>;}
export const GraphQLNonNull: _GraphQLNonNull<GraphQLNullableType>;
export type GraphQLWrappingType = GraphQLList<any> | GraphQLNonNull<any>;
export function isWrappingType(type: any): type is GraphQLWrappingType;
export function assertWrappingType(type: any): GraphQLWrappingType;
/** * These types can all accept null as a value. */export type GraphQLNullableType = | GraphQLScalarType | GraphQLObjectType | GraphQLInterfaceType | GraphQLUnionType | GraphQLEnumType | GraphQLInputObjectType | GraphQLList<any>;
export function isNullableType(type: any): type is GraphQLNullableType;
export function assertNullableType(type: any): GraphQLNullableType;
export function getNullableType(type: void): undefined;export function getNullableType<T extends GraphQLNullableType>(type: T): T;export function getNullableType<T extends GraphQLNullableType>( // eslint-disable-next-line @typescript-eslint/unified-signatures type: GraphQLNonNull<T>,): T;
/** * These named types do not include modifiers like List or NonNull. */export type GraphQLNamedType = | GraphQLScalarType | GraphQLObjectType | GraphQLInterfaceType | GraphQLUnionType | GraphQLEnumType | GraphQLInputObjectType;
export function isNamedType(type: any): type is GraphQLNamedType;
export function assertNamedType(type: any): GraphQLNamedType;
export function getNamedType(type: void): undefined;export function getNamedType(type: GraphQLType): GraphQLNamedType;
/** * Used while defining GraphQL types to allow for circular references in * otherwise immutable type definitions. */export type Thunk<T> = (() => T) | T;
/** * Scalar Type Definition * * The leaf values of any request and input values to arguments are * Scalars (or Enums) and are defined with a name and a series of functions * used to parse input from ast or variables and to ensure validity. * * Example: * * const OddType = new GraphQLScalarType({ * name: 'Odd', * serialize(value) { * return value % 2 === 1 ? value : null; * } * }); * */export class GraphQLScalarType { name: string; description: Maybe<string>; serialize: GraphQLScalarSerializer<any>; parseValue: GraphQLScalarValueParser<any>; parseLiteral: GraphQLScalarLiteralParser<any>; extensions: Maybe<Readonly<Record<string, any>>>; astNode: Maybe<ScalarTypeDefinitionNode>; extensionASTNodes: Maybe<ReadonlyArray<ScalarTypeExtensionNode>>;
constructor(config: Readonly<GraphQLScalarTypeConfig<any, any>>);
toConfig(): GraphQLScalarTypeConfig<any, any> & { serialize: GraphQLScalarSerializer<any>; parseValue: GraphQLScalarValueParser<any>; parseLiteral: GraphQLScalarLiteralParser<any>; extensions: Maybe<Readonly<Record<string, any>>>; extensionASTNodes: ReadonlyArray<ScalarTypeExtensionNode>; };
toString(): string; toJSON(): string; inspect(): string;}
export type GraphQLScalarSerializer<TExternal> = ( value: any,) => Maybe<TExternal>;export type GraphQLScalarValueParser<TInternal> = ( value: any,) => Maybe<TInternal>;export type GraphQLScalarLiteralParser<TInternal> = ( valueNode: ValueNode, variables: Maybe<{ [key: string]: any }>,) => Maybe<TInternal>;
export interface GraphQLScalarTypeConfig<TInternal, TExternal> { name: string; description?: Maybe<string>; // Serializes an internal value to include in a response. serialize: GraphQLScalarSerializer<TExternal>; // Parses an externally provided value to use as an input. parseValue?: GraphQLScalarValueParser<TInternal>; // Parses an externally provided literal value to use as an input. parseLiteral?: GraphQLScalarLiteralParser<TInternal>; extensions?: Maybe<Readonly<Record<string, any>>>; astNode?: Maybe<ScalarTypeDefinitionNode>; extensionASTNodes?: Maybe<ReadonlyArray<ScalarTypeExtensionNode>>;}
/** * Object Type Definition * * Almost all of the GraphQL types you define will be object types. Object types * have a name, but most importantly describe their fields. * * Example: * * const AddressType = new GraphQLObjectType({ * name: 'Address', * fields: { * street: { type: GraphQLString }, * number: { type: GraphQLInt }, * formatted: { * type: GraphQLString, * resolve(obj) { * return obj.number + ' ' + obj.street * } * } * } * }); * * When two types need to refer to each other, or a type needs to refer to * itself in a field, you can use a function expression (aka a closure or a * thunk) to supply the fields lazily. * * Example: * * const PersonType = new GraphQLObjectType({ * name: 'Person', * fields: () => ({ * name: { type: GraphQLString }, * bestFriend: { type: PersonType }, * }) * }); * */export class GraphQLObjectType<TSource = any, TContext = any> { name: string; description: Maybe<string>; isTypeOf: Maybe<GraphQLIsTypeOfFn<TSource, TContext>>; extensions: Maybe<Readonly<Record<string, any>>>; astNode: Maybe<ObjectTypeDefinitionNode>; extensionASTNodes: Maybe<ReadonlyArray<ObjectTypeExtensionNode>>;
constructor(config: Readonly<GraphQLObjectTypeConfig<TSource, TContext>>);
getFields(): GraphQLFieldMap<any, TContext>; getInterfaces(): Array<GraphQLInterfaceType>;
toConfig(): GraphQLObjectTypeConfig<any, any> & { interfaces: Array<GraphQLInterfaceType>; fields: GraphQLFieldConfigMap<any, any>; extensions: Maybe<Readonly<Record<string, any>>>; extensionASTNodes: ReadonlyArray<ObjectTypeExtensionNode>; };
toString(): string; toJSON(): string; inspect(): string;}
export function argsToArgsConfig( args: ReadonlyArray<GraphQLArgument>,): GraphQLFieldConfigArgumentMap;
export interface GraphQLObjectTypeConfig<TSource, TContext> { name: string; description?: Maybe<string>; interfaces?: Thunk<Maybe<Array<GraphQLInterfaceType>>>; fields: Thunk<GraphQLFieldConfigMap<TSource, TContext>>; isTypeOf?: Maybe<GraphQLIsTypeOfFn<TSource, TContext>>; extensions?: Maybe<Readonly<Record<string, any>>>; astNode?: Maybe<ObjectTypeDefinitionNode>; extensionASTNodes?: Maybe<ReadonlyArray<ObjectTypeExtensionNode>>;}
export type GraphQLTypeResolver<TSource, TContext> = ( value: TSource, context: TContext, info: GraphQLResolveInfo, abstractType: GraphQLAbstractType,) => PromiseOrValue<Maybe<GraphQLObjectType<TSource, TContext> | string>>;
export type GraphQLIsTypeOfFn<TSource, TContext> = ( source: TSource, context: TContext, info: GraphQLResolveInfo,) => PromiseOrValue<boolean>;
export type GraphQLFieldResolver< TSource, TContext, TArgs = { [argName: string]: any }> = ( source: TSource, args: TArgs, context: TContext, info: GraphQLResolveInfo,) => any;
export interface GraphQLResolveInfo { readonly fieldName: string; readonly fieldNodes: ReadonlyArray<FieldNode>; readonly returnType: GraphQLOutputType; readonly parentType: GraphQLObjectType; readonly path: Path; readonly schema: GraphQLSchema; readonly fragments: { [key: string]: FragmentDefinitionNode }; readonly rootValue: any; readonly operation: OperationDefinitionNode; readonly variableValues: { [variableName: string]: any };}
export interface GraphQLFieldConfig< TSource, TContext, TArgs = { [argName: string]: any }> { description?: Maybe<string>; type: GraphQLOutputType; args?: GraphQLFieldConfigArgumentMap; resolve?: GraphQLFieldResolver<TSource, TContext, TArgs>; subscribe?: GraphQLFieldResolver<TSource, TContext, TArgs>; deprecationReason?: Maybe<string>; extensions?: Maybe<Readonly<Record<string, any>>>; astNode?: Maybe<FieldDefinitionNode>;}
export type GraphQLFieldConfigArgumentMap = { [key: string]: GraphQLArgumentConfig;};
export interface GraphQLArgumentConfig { description?: Maybe<string>; type: GraphQLInputType; defaultValue?: any; extensions?: Maybe<Readonly<Record<string, any>>>; astNode?: Maybe<InputValueDefinitionNode>;}
export type GraphQLFieldConfigMap<TSource, TContext> = { [key: string]: GraphQLFieldConfig<TSource, TContext>;};
export interface GraphQLField< TSource, TContext, TArgs = { [key: string]: any }> { name: string; description: Maybe<string>; type: GraphQLOutputType; args: Array<GraphQLArgument>; resolve?: GraphQLFieldResolver<TSource, TContext, TArgs>; subscribe?: GraphQLFieldResolver<TSource, TContext, TArgs>; isDeprecated: boolean; deprecationReason: Maybe<string>; extensions: Maybe<Readonly<Record<string, any>>>; astNode?: Maybe<FieldDefinitionNode>;}
export interface GraphQLArgument { name: string; description: Maybe<string>; type: GraphQLInputType; defaultValue: any; extensions: Maybe<Readonly<Record<string, any>>>; astNode: Maybe<InputValueDefinitionNode>;}
export function isRequiredArgument(arg: GraphQLArgument): boolean;
export type GraphQLFieldMap<TSource, TContext> = { [key: string]: GraphQLField<TSource, TContext>;};
/** * Interface Type Definition * * When a field can return one of a heterogeneous set of types, a Interface type * is used to describe what types are possible, what fields are in common across * all types, as well as a function to determine which type is actually used * when the field is resolved. * * Example: * * const EntityType = new GraphQLInterfaceType({ * name: 'Entity', * fields: { * name: { type: GraphQLString } * } * }); * */export class GraphQLInterfaceType { name: string; description: Maybe<string>; resolveType: Maybe<GraphQLTypeResolver<any, any>>; extensions: Maybe<Readonly<Record<string, any>>>; astNode?: Maybe<InterfaceTypeDefinitionNode>; extensionASTNodes: Maybe<ReadonlyArray<InterfaceTypeExtensionNode>>;
constructor(config: Readonly<GraphQLInterfaceTypeConfig<any, any>>); getFields(): GraphQLFieldMap<any, any>; getInterfaces(): Array<GraphQLInterfaceType>;
toConfig(): GraphQLInterfaceTypeConfig<any, any> & { interfaces: Array<GraphQLInterfaceType>; fields: GraphQLFieldConfigMap<any, any>; extensions: Maybe<Readonly<Record<string, any>>>; extensionASTNodes: ReadonlyArray<InterfaceTypeExtensionNode>; };
toString(): string; toJSON(): string; inspect(): string;}
export interface GraphQLInterfaceTypeConfig<TSource, TContext> { name: string; description?: Maybe<string>; interfaces?: Thunk<Maybe<Array<GraphQLInterfaceType>>>; fields: Thunk<GraphQLFieldConfigMap<TSource, TContext>>; /** * Optionally provide a custom type resolver function. If one is not provided, * the default implementation will call `isTypeOf` on each implementing * Object type. */ resolveType?: Maybe<GraphQLTypeResolver<TSource, TContext>>; extensions?: Maybe<Readonly<Record<string, any>>>; astNode?: Maybe<InterfaceTypeDefinitionNode>; extensionASTNodes?: Maybe<ReadonlyArray<InterfaceTypeExtensionNode>>;}
/** * Union Type Definition * * When a field can return one of a heterogeneous set of types, a Union type * is used to describe what types are possible as well as providing a function * to determine which type is actually used when the field is resolved. * * Example: * * const PetType = new GraphQLUnionType({ * name: 'Pet', * types: [ DogType, CatType ], * resolveType(value) { * if (value instanceof Dog) { * return DogType; * } * if (value instanceof Cat) { * return CatType; * } * } * }); * */export class GraphQLUnionType { name: string; description: Maybe<string>; resolveType: Maybe<GraphQLTypeResolver<any, any>>; extensions: Maybe<Readonly<Record<string, any>>>; astNode: Maybe<UnionTypeDefinitionNode>; extensionASTNodes: Maybe<ReadonlyArray<UnionTypeExtensionNode>>;
constructor(config: Readonly<GraphQLUnionTypeConfig<any, any>>); getTypes(): Array<GraphQLObjectType>;
toConfig(): GraphQLUnionTypeConfig<any, any> & { types: Array<GraphQLObjectType>; extensions: Maybe<Readonly<Record<string, any>>>; extensionASTNodes: ReadonlyArray<UnionTypeExtensionNode>; };
toString(): string; toJSON(): string; inspect(): string;}
export interface GraphQLUnionTypeConfig<TSource, TContext> { name: string; description?: Maybe<string>; types: Thunk<Array<GraphQLObjectType>>; /** * Optionally provide a custom type resolver function. If one is not provided, * the default implementation will call `isTypeOf` on each implementing * Object type. */ resolveType?: Maybe<GraphQLTypeResolver<TSource, TContext>>; extensions?: Maybe<Readonly<Record<string, any>>>; astNode?: Maybe<UnionTypeDefinitionNode>; extensionASTNodes?: Maybe<ReadonlyArray<UnionTypeExtensionNode>>;}
/** * Enum Type Definition * * Some leaf values of requests and input values are Enums. GraphQL serializes * Enum values as strings, however internally Enums can be represented by any * kind of type, often integers. * * Example: * * const RGBType = new GraphQLEnumType({ * name: 'RGB', * values: { * RED: { value: 0 }, * GREEN: { value: 1 }, * BLUE: { value: 2 } * } * }); * * Note: If a value is not provided in a definition, the name of the enum value * will be used as its internal value. */export class GraphQLEnumType { name: string; description: Maybe<string>; extensions: Maybe<Readonly<Record<string, any>>>; astNode: Maybe<EnumTypeDefinitionNode>; extensionASTNodes: Maybe<ReadonlyArray<EnumTypeExtensionNode>>;
constructor(config: Readonly<GraphQLEnumTypeConfig>); getValues(): Array<GraphQLEnumValue>; getValue(name: string): Maybe<GraphQLEnumValue>; serialize(value: any): Maybe<string>; parseValue(value: any): Maybe<any>; parseLiteral( valueNode: ValueNode, _variables: Maybe<{ [key: string]: any }>, ): Maybe<any>;
toConfig(): GraphQLEnumTypeConfig & { extensions: Maybe<Readonly<Record<string, any>>>; extensionASTNodes: ReadonlyArray<EnumTypeExtensionNode>; };
toString(): string; toJSON(): string; inspect(): string;}
export interface GraphQLEnumTypeConfig { name: string; description?: Maybe<string>; values: GraphQLEnumValueConfigMap; extensions?: Maybe<Readonly<Record<string, any>>>; astNode?: Maybe<EnumTypeDefinitionNode>; extensionASTNodes?: Maybe<ReadonlyArray<EnumTypeExtensionNode>>;}
export type GraphQLEnumValueConfigMap = { [key: string]: GraphQLEnumValueConfig;};
export interface GraphQLEnumValueConfig { description?: Maybe<string>; value?: any; deprecationReason?: Maybe<string>; extensions?: Maybe<Readonly<Record<string, any>>>; astNode?: Maybe<EnumValueDefinitionNode>;}
export interface GraphQLEnumValue { name: string; description: Maybe<string>; value: any; isDeprecated: boolean; deprecationReason: Maybe<string>; extensions: Maybe<Readonly<Record<string, any>>>; astNode?: Maybe<EnumValueDefinitionNode>;}
/** * Input Object Type Definition * * An input object defines a structured collection of fields which may be * supplied to a field argument. * * Using `NonNull` will ensure that a value must be provided by the query * * Example: * * const GeoPoint = new GraphQLInputObjectType({ * name: 'GeoPoint', * fields: { * lat: { type: new GraphQLNonNull(GraphQLFloat) }, * lon: { type: new GraphQLNonNull(GraphQLFloat) }, * alt: { type: GraphQLFloat, defaultValue: 0 }, * } * }); * */export class GraphQLInputObjectType { name: string; description: Maybe<string>; extensions: Maybe<Readonly<Record<string, any>>>; astNode: Maybe<InputObjectTypeDefinitionNode>; extensionASTNodes: Maybe<ReadonlyArray<InputObjectTypeExtensionNode>>;
constructor(config: Readonly<GraphQLInputObjectTypeConfig>); getFields(): GraphQLInputFieldMap;
toConfig(): GraphQLInputObjectTypeConfig & { fields: GraphQLInputFieldConfigMap; extensions: Maybe<Readonly<Record<string, any>>>; extensionASTNodes: ReadonlyArray<InputObjectTypeExtensionNode>; };
toString(): string; toJSON(): string; inspect(): string;}
export interface GraphQLInputObjectTypeConfig { name: string; description?: Maybe<string>; fields: Thunk<GraphQLInputFieldConfigMap>; extensions?: Maybe<Readonly<Record<string, any>>>; astNode?: Maybe<InputObjectTypeDefinitionNode>; extensionASTNodes?: Maybe<ReadonlyArray<InputObjectTypeExtensionNode>>;}
export interface GraphQLInputFieldConfig { description?: Maybe<string>; type: GraphQLInputType; defaultValue?: any; extensions?: Maybe<Readonly<Record<string, any>>>; astNode?: Maybe<InputValueDefinitionNode>;}
export type GraphQLInputFieldConfigMap = { [key: string]: GraphQLInputFieldConfig;};
export interface GraphQLInputField { name: string; description?: Maybe<string>; type: GraphQLInputType; defaultValue?: any; extensions: Maybe<Readonly<Record<string, any>>>; astNode?: Maybe<InputValueDefinitionNode>;}
export function isRequiredInputField(field: GraphQLInputField): boolean;
export type GraphQLInputFieldMap = { [key: string]: GraphQLInputField };