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