Reputation: 149
I am working on fetching Shopify products based on the product tag. I did the below code for it and it's working fine when I put the AND
condition, But it douses not work with the OR
condition. It shows products where a tag appears in text content.
Upvotes: 2
Views: 2169
Reputation: 1965
With an expression like that you're searching for tags containg OR, you should put the boolean expression out, like this
{
products(query:"tag:Blue OR tag:Pink"){
...
Upvotes: 3