OrderItem
(OBJECT)
Product contained within order
link GraphQL Schema definition
- type OrderItem {
- # Internal order item ID
- ID! :
- # reference to product
- # . Please note that source product may not exist anymore.
- 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.
- String :
- # import code (identificator from supplier's feed or data source)
- String :
- # product's EAN
- Ean :
- # Warehouse number
- WarehouseNumber :
- # count of ordered pieces
- Int! :
- # net price per unit (excl. tax)
- Price! :
- # net sum per row (excl. tax)
- Price! :
- # recycle fee per unit (1 pc)
- Price :
- # weight per unit (1 pc)
- Weight :
- # tax ratio for given order item
- Percentage :
- # sum per row (incl. tax)
- Price! :
- }