I am trying to build an app that shows low inventory of variants with a button action hooked up to my custom internal application.
I would like to show All Variants, of only a subset of selectOptions (colors).
My simple query currently looks like this:
{
productVariants(first:10, query:"inventory_quantity:<5") {
edges {
node {
inventoryQuantity,
selectedOptions {
name,
value
}
product {
title,
productType,
}
}
cursor
}
pageInfo {
hasNextPage
endCursor
}
}
}
This returns all variations including all those with selectedOptions I don’t want to see. I was playing around and I’m not sure I see a simple way to do this? I’m also fairly green to the GraphQL Tech as well.
Any help would be appreciated!
Thanks