I’m trying to do a basic filter on the unstable graphql using the following query:
query FilteredProducts($product_filters: [ProductFilter!]) {
collections(first: 10) {
edges {
node {
products(first: 10, filters: $product_filters) {
edges {
node {
handle
productType
vendor
}
}
}
}
}
}
}
With the variables
{
"product_filters": [
{
"productType": "witte wijn"
}
]
}
I’m expecting to only get products back with the type “witte wijn”, but i’m getting back all products even if the type doesn’t match.
Is there an issue with the query, or is this feature not fully supported yet?
Thanks!