Input Object
Input objects are composite types used as inputs into queries defined as a list of named input values.
For example the input objectPoint
could be defined as:
input Point {
x: Int
y: Int
}
Fields
kind
must return__TypeKind.INPUT_OBJECT
.name
must return a String.description
may return a String or null .inputFields
: a list ofInputValue
.- All other fields must return null .