Today, I have made a number of inventory adjustments that I can see on the individual product inventory history pages have worked, but when I try to query for them in ShopifyQL and the Analytic reports in the Shopify admin, they do not appear. Is this a known issue?
Hey @AdvancedApps - thanks for flagging this. I’m not seeing a broader incident at the moment, and these adjustments should appear in the Inventory adjustment changes report.
Could you share your exact ShopifyQL query, how long the adjustments were missing, and one example with its timestamp/timezone, SKU, location, and adjustment source? If it was API-created, an x-request-id would also be helpful.
Let me know and I can take a closer look on our end here.
Hi @Alan_G,
I have confirmed this issue on multiple stores.
The ShopifyQL query is
FROM inventory_adjustment_history
SHOW inventory_adjustment_change
GROUP BY day, product_variant_sku, inventory_app_name, staff_member_name,
inventory_change_reason, inventory_state, reference_document_uri WITH TOTALS
TIMESERIES day
HAVING inventory_adjustment_change != 0
SINCE 2026-07-12 UNTIL 2026-09-12
ORDER BY day DESC
LIMIT 1000
The last adjustments returned by the ShopifyQL query were from 10th August.
Below is an example inventory adjustment made on 11th August via the Shopify Admin, I’ve also made them via the api and they have not appeared.
{
"node": {
"id": "gid://shopify/InventoryAdjustmentGroup/30558736810026",
"createdAt": "2026-08-11T11:41:42Z",
"displayReason": "Manually adjusted",
"reason": "manual_adjustment",
"staffMember": {
"id": "gid://shopify/StaffMember/REDACTED",
"name": "REDACTED",
"__typename": "StaffMember"
},
"app": {
"id": "gid://shopify/App/1830279",
"title": "Shopify Web",
"__typename": "App"
},
"referenceDocument": {
"uri": "gid://shopify/TransferAdjustment/e4935a98-3bc0-47e4-9aba-d9ad2e5ed3fc",
"displayName": null,
"__typename": "InventoryAdjustmentGroupReferenceDocument"
},
"quantitiesSnapshot": [
{
"name": "available",
"quantityAfterChange": 8,
"delta": 4,
"__typename": "InventoryQuantitiesSnapshot"
},
{
"name": "committed",
"quantityAfterChange": 4,
"delta": 0,
"__typename": "InventoryQuantitiesSnapshot"
},
{
"name": "reserved",
"quantityAfterChange": 0,
"delta": 0,
"__typename": "InventoryQuantitiesSnapshot"
},
{
"name": "safety_stock",
"quantityAfterChange": 0,
"delta": 0,
"__typename": "InventoryQuantitiesSnapshot"
},
{
"name": "quality_control",
"quantityAfterChange": 0,
"delta": 0,
"__typename": "InventoryQuantitiesSnapshot"
},
{
"name": "damaged",
"quantityAfterChange": 0,
"delta": 0,
"__typename": "InventoryQuantitiesSnapshot"
},
{
"name": "incoming",
"quantityAfterChange": 0,
"delta": 0,
"__typename": "InventoryQuantitiesSnapshot"
},
{
"name": "on_hand",
"quantityAfterChange": 12,
"delta": 4,
"__typename": "InventoryQuantitiesSnapshot"
}
],
"__typename": "InventoryAdjustmentGroup"
}
}