WarehouseItem

(OBJECT)

Product warehouse item

link GraphQL Schema definition

  • type WarehouseItem {
  • # Item internal ID
  • id: ID!
  • # Quantity on stock
  • quantity: Float
  • # Non blocked quantity on stock
  • available_quantity: Float
  • # Warehouse identificator
  • warehouse_number: WarehouseNumber
  • # Product
  • product: Product
  • # EAN
  • ean: Ean
  • # Weight
  • weight: Weight
  • # warehouse status of this variant
  • # this may be NULL if warehouse status is determined by the main product's status
  • status: WarehouseStatus
  • # Attributes making up the physical variant of the product
  • attributes: [Attribute]
  • # Image path for specific warehouse item variant
  • image: Url
  • # product variant's net price (excl. tax)
  • # If not set, the product's main price is returned
  • price: Price!
  • # Final price of product including tax, discounts and all other price components.
  • final_price: Price
  • }