Can I export individual Shopify inventory adjustment changes?

EZ Exporter supports an Analytics export where you can use ShopifyQL to query individual inventory adjustment changes by location and by app/staff member:

FROM inventory_adjustment_history
  SHOW inventory_adjustment_change
  GROUP BY second, product_variant_id, product_variant_sku, inventory_app_name,
    staff_member_name, inventory_change_reason, inventory_state,
    inventory_location_name
  HAVING inventory_adjustment_change != 0
  SINCE startOfDay(-30d) UNTIL today
  ORDER BY second DESC

On the "Templates" page, you can use this template which already has the ShopifyQL query configured and can be customized further:

  • Inventory Adjustment History (Last 30 Days)

Related Articles:


App: EZ Exporter

Tags: analytics, inventory adjustment history, shopify analytics, shopifyql