OBJECT

StockItem

Stock item assigned to the product

link GraphQL Schema definition

  • type StockItem {
  • # Stock item id
  • item_id: ID
  • # Product identifier
  • product_id: ID
  • # Stock id
  • stock_id: ID
  • # Stock quantity
  • qty: Float
  • # Is item on stock
  • is_in_stock: Boolean
  • # Is quantity decimal
  • is_qty_decimal: Boolean
  • # Min sale quantity
  • min_qty: Float
  • # Max sale quantity
  • max_sale_qty: Float
  • # Does this item support backorders
  • backorders: Int
  • # How quantity increments
  • qty_increments: Float
  • }