Fetch shopify products based on product tags

Viewed 141

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.

enter image description here

1 Answers

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"){
      ...
Related