Hello everyone ,
I want to filter products exclude some tags using Graphql but I didn’t found any syntax to achieve this.
They provide me all the products listing using this query.
query{
products(first:150,query:"-tags:[tag1,tag2]"){
edges{
node{
id
title
}
}
}
}
I want the product listing with exclude some tags product.
Is there any way to achieve this ?
Thanks !