Using this example:
query {
products(first: 5, query: "title:Free Gratis") {
edges {
node {
id
title
variants (first: 50, query: "__title:*sticker*__") {
edges {
node {
id
sku
title
}
}
}
}
}
}
}
-
It’s unclear how the products “subquery” works (title:“Free Gratis”). Isn’t that supposed to find “Free” or “Gratis” anywhere in the title?
-
The variants subquery (title:sticker) doesn’t work at all.
Does anyone have a working example of filtering certain products by title and variants by title?

