App reviews, troubleshooting, and recommendations
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello. I'm trying to get the orders which are not fulfilled. I'm using GraphQL Admin API and my search syntax is this:
"fulfillment_status:unfulfilled" but that returns nothing, while I clearly have unfulfilled orders in the store.
But when I use "fulfillment_status:any" it works and returns all the orders. So, query structure is correct I guess. Then what's wrong ? I also tried "NOT fulfillment_status:shipped" but that didn't work as well. I'm so confused
Solved! Go to the solution
This is an accepted solution.
Haha, yes. IDK how, but adding "reverse: true" argument helped.
You can try "fulfillment_status:unshipped"
This is an accepted solution.
Haha, yes. IDK how, but adding "reverse: true" argument helped.
For me currently in `2024-10` `fulfillment_status:shipped` works, but `fulfillment_status:fulfilled` does not. But I do get a warning:
```
"warnings": [
{
"field": "fulfillment_status",
"message": "Input `shipped` is not an accepted value."
}
]
```
I also tried `unshipped` and it also seems to give me all `unfulfilled` orders.