Hello, the query below returns all my locations with the type by their warehouse. However, I also need to bring the inventory/quantity of products allocated in this bin so that I can identify which ones are empty. Or if possible, a direct query that already does this.
How can I do this?
Below is the query that I have already created that works, it only needs the quantities now.
query {
locations(warehouse_id: "") {
data {
edges {
node {
id
name
type {
name
}
}
}
}
}
}