I’m making a query for variants with a quantity of 2 - most results do indeed have inventory of 2 but there’s also results with a totally different inventory included. Why is this happening?
query GetActiveProductVariants {
productVariants(first: 50, query: "inventory_quantity:2") {
edges {
node {
id
title
inventoryQuantity
product {
title
vendor
}
}
}
}
}
I’ve tried variants of the query and either the same result or an error.