INPUT_OBJECT

UpdateVehicleMutationInput

The input object that defines the fields for the updateVehicle mutation.

link GraphQL Schema definition

  • input UpdateVehicleMutationInput {
  • # A descriptive name.
  • name: String
  • # The manufacturer.
  • manufacturer: String
  • # The model.
  • model: String
  • # A year.
  • year: Int
  • # The vehicle identification number.
  • vin: String
  • # A note about this entity.
  • note: NoteMutationInput
  • # Setting this value to `true` will set `manufacturer` to null.
  • unset_manufacturer: Boolean
  • # Setting this value to `true` will set `model` to null.
  • unset_model: Boolean
  • # Setting this value to `true` will set `year` to null.
  • unset_year: Boolean
  • # Setting this value to `true` will set `vin` to null.
  • unset_vin: Boolean
  • }

link Require by