Flow Scheduled Get Order Data filter?

Hello,

I have a Scheduled flow that first of uses a Get Order Data action however I wish this action to just retrieve orders that are not fulfilled, have a open status and are not tagged with Back Order. My query looks like this :

fulfillment_status:Unfulfilled AND tag_not:“Back Order” AND status:open

However, this never return any Order Data? What am I doing wrong?

Kind regards,

Darren.

Might need single quotes - not exactly sure. But I always spot check these things in the graphiql app and in there you need single quotes.

{
  orders(first:10,query:"fulfillment_status:Unfulfilled AND tag_not:'Back Order' AND status:open") {
    nodes {
      id
      displayFulfillmentStatus
    }
  }
}