INPUT_OBJECT

UpdateInventoryItemsMutationInput

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

link GraphQL Schema definition

  • input UpdateInventoryItemsMutationInput {
  • # The type of entity that this inventory item is assigned to.
  • inventoryitemable_type: InventoryitemableType
  • # The ID of the entity that this inventory item is assigned to.
  • inventoryitemable_id: Int64Bit
  • # The purchase price of this item.
  • purchase_price: Int
  • # The physical status of this item.
  • status: InventoryItemStatus
  • # The ID of a `DeploymentType`.
  • deployment_type_id: Int64Bit
  • # A decimal latitude.
  • latitude: Latitude
  • # A decimal latitude.
  • longitude: Longitude
  • # A note about this entity.
  • note: NoteMutationInput
  • # A list of file IDs to be associated with this object. These must first have been
  • # uploaded to the /files endpoint and must be currently unassociated.
  • files: [AssociateFileMutationInput]
  • # The task to be performed.
  • tasks: [TaskMutationInput]
  • # Setting this value to `true` will set `purchase_price` to null.
  • unset_purchase_price: Boolean
  • # Setting this value to `true` will set `deployment_type_id` to null.
  • unset_deployment_type_id: Boolean
  • # Setting this value to `true` will set `latitude` to null.
  • unset_latitude: Boolean
  • # Setting this value to `true` will set `longitude` to null.
  • unset_longitude: Boolean
  • }

link Require by