Class GraphQLInputObjectField

java.lang.Object
graphql.schema.GraphQLInputObjectField
All Implemented Interfaces:
GraphQLDirectiveContainer, GraphQLInputSchemaElement, GraphQLInputValueDefinition, GraphQLNamedSchemaElement, GraphQLSchemaElement

@PublicApi public class GraphQLInputObjectField extends Object implements GraphQLNamedSchemaElement, GraphQLInputValueDefinition
Input objects defined via GraphQLInputObjectType contains these input fields. There are similar to GraphQLFieldDefinition however they can ONLY be used on input objects, that is to describe values that are fed into a graphql mutation. See https://graphql.org/learn/schema/#input-types for more details on the concept.