Hi,
I am trying to fetch products which have positive inventory quantity among the list of product ids.
But my query below does not return any results.
{
productVariants(first: 10, query: "(inventory_quantity:>0) AND (product_ids:7483474804973,7483550007533)") {
edges {
node {
id
image {
url
}
product{
id
}
availableForSale
inventoryQuantity
price
selectedOptions {
name
value
}
}
}
}
}
But if i would run the above query with either inventory condition or product_ids only, then i get results.
What am i doing wrong here?
Big thanks for help.