Ronak Panchal
Ronak Panchal

Reputation: 149

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.

enter image description here

Upvotes: 2

Views: 2169

Answers (1)

Fabio Filippi
Fabio Filippi

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

Related Questions