Hi,
I have a GraphiQL statement - where I am interested in getting the inventory details for just products that we track.
But the query: "tracked:true" is being ignored. Probably a syntax issue - can anybody help?
{
inventoryItems(first:10, query:"tracked:true") {
edges {
node {
id
sku
tracked
inventoryLevel(locationId: "gid://shopify/Location/id") {
available
id
updatedAt
}
variant {
displayName
barcode
product {
title
}
}
}
}
}
}
Solved! Go to the solution
This is an accepted solution.
Usually that's what I wind up doing if I can't narrow things down enough with query parameters. Not the most efficient solution but it works!
User | Count |
---|---|
13 | |
13 | |
7 | |
6 | |
5 |