Fetch shopify products based on product tags

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.

I have found the solution form https://stackoverflow.com/With an expression like that you’re searching for tags containing OR, you should put the boolean expression out, like this

{ 
   products(query:"tag:Blue OR tag:Pink"){
      ...

@Ronak3 do it like this

"tag:Blue OR tag:PINK"
1 Like