INPUT_OBJECT

CreateInventoryItemSegmentMutationInput

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

link GraphQL Schema definition

  • input CreateInventoryItemSegmentMutationInput {
  • # The ID of an `InventoryItem`.
  • inventory_item_id: Int64Bit!
  • # 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 quantity of this inventory model.
  • quantity: Int!
  • # 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]
  • }

link Require by