INPUT_OBJECT

StateInput

Input for associating a state with an address. One argument is required for creation. If more than one argument is given, the first valid argument will define the state (the order is "id", "short", then "name").

link GraphQL Schema definition

  • input StateInput {
  • # Abbreviation of the state name.
  • short: String
  • # Full name of the state.
  • name: String
  • # Database ID for the given state.
  • id: ID
  • }