Test Collection - low stock

Mixed Patterns Kids Socks (3-pack) - 98% Organic Cotton Q for Quinn™

Daily Low Stock Report Script : 

FROM inventory
  SHOW ending_inventory_units, ending_inventory_value
  WHERE inventory_is_tracked = true
  GROUP BY product_title, product_variant_title, product_variant_sku,
    inventory_item_cost WITH TOTALS, CURRENCY 'USD'
  HAVING ending_inventory_units >= 1
    AND ending_inventory_units < 10
  DURING today
  ORDER BY product_title ASC
  LIMIT 1000
VISUALIZE ending_inventory_units TYPE table

For 1 Month Stock Report : 

FROM inventory
SHOW ending_inventory_units, ending_inventory_value
WHERE inventory_is_tracked = true
  AND product_status = 'active'
GROUP BY product_title, product_variant_title, product_variant_sku, inventory_item_cost
HAVING ending_inventory_units >= 1 AND ending_inventory_units < 10
WITH TOTALS, PERCENT_CHANGE
SINCE startOfMonth(-1m)
UNTIL endOfMonth(-1m)
ORDER BY product_title ASC
LIMIT 1000
VISUALIZE ending_inventory_units TYPE table

For showing only active products low inventory (today) : 

FROM inventory
SHOW ending_inventory_units, ending_inventory_value
WHERE inventory_is_tracked = true
  AND product_status = 'active'
GROUP BY product_title, product_variant_title, product_variant_sku, inventory_item_cost
HAVING ending_inventory_units >= 1 AND ending_inventory_units < 10
WITH TOTALS, PERCENT_CHANGE
SINCE today
UNTIL today
ORDER BY product_title ASC
LIMIT 1000
VISUALIZE ending_inventory_units TYPE table


    Filter
      69 products

      Looking for something specific?

      Take our product finder quiz to pick the right product for you!