Hi,
How can I filter orders to get a list with all orders that doon’t include 2 tags
(Not tagged with “first tag” AND Not tagged with “Second tag”)
Thanks in advance
Hi,
How can I filter orders to get a list with all orders that doon’t include 2 tags
(Not tagged with “first tag” AND Not tagged with “Second tag”)
Thanks in advance
Hi,
You can try ShopifyQL via GraphQL API
Example Query
{
orders(query: "NOT tagged:'first tag' AND NOT tagged:'second tag'") {
edges {
node {
id
tags
}
}
}
}