INPUT_OBJECT

CreatePurchaseOrderOrderItemsMutationInput

Add items to a new purchase order.

link GraphQL Schema definition

  • input CreatePurchaseOrderOrderItemsMutationInput {
  • # The ID of a vendor item.
  • vendor_item_id: Int64Bit!
  • # The quantity of a vendor item on a purchase order.
  • units: Int
  • # The price of the vendor item at the time the purchase order was created.
  • price: Int64Bit
  • # The current status of a purchase order item.
  • status: PurchaseOrderItemStatus
  • # A list of tax IDs that should be applied to this purchase order item.
  • taxes: [Int64Bit]
  • # Data to insert into custom fields.
  • custom_field_data: [CustomFieldDataMutationInput]
  • # Number of inventory models that are included in a single unit of this vendors
  • # product.
  • quantity_per_unit: Int
  • # Part number used by the vendor to identify this vendor item.
  • part_number: String
  • # A descriptive name.
  • name: String
  • # The order this item is shown in a list.
  • list_order: Int
  • }