WarehouseItem

(OBJECT)

Product warehouse item

link GraphQL Schema definition

  • type WarehouseItem {
  • # Item internal ID
  • id: ID!
  • # Quantity on stock
  • quantity: Float
  • # Warehouse identificator
  • warehouse_number: String
  • # Product
  • product: Product
  • # EAN
  • ean: Ean
  • # Weight
  • weight: Weight
  • # Status
  • status: WarehouseStatus
  • # Attributes making up the physical variant of the product
  • attributes: [Attribute]
  • # Image path warehouse item variant
  • image: Url
  • # Variant price
  • price: Price
  • }