OrderItem

(OBJECT)

Product contained within order

link GraphQL Schema definition

  • type OrderItem {
  • # Internal order item ID
  • id: ID!
  • # reference to product
  • # . Please note that source product may not exist anymore.
  • product: Product
  • # item's title
  • # . This label might have been changed by admin so it does not have to be
  • # identical to soruce product's name.
  • item_label: String
  • # import code (identificator from supplier's feed or data source)
  • import_code: String
  • # product's EAN
  • ean: Ean
  • # Warehouse number
  • warehouse_number: WarehouseNumber
  • # count of ordered pieces
  • quantity: Int!
  • # net price per unit (excl. tax)
  • price: Price!
  • # net sum per row (excl. tax)
  • sum: Price!
  • # recycle fee per unit (1 pc)
  • recycle_fee: Price
  • # weight per unit (1 pc)
  • weight: Weight
  • # tax ratio for given order item
  • tax_rate: Percentage
  • }