We have tried basically everything to query this:
Can someone PLEASE tell me the query to get to this? We want to identify those enums, in particularly “READY_FOR_PICKUP”
I will be forever grateful!!
We have tried basically everything to query this:
Can someone PLEASE tell me the query to get to this? We want to identify those enums, in particularly “READY_FOR_PICKUP”
I will be forever grateful!!
There is a high level status on the order Order - GraphQL Admin
To get more detailed information you would need to query the fulfillment orders, if you’re looking for pickup only orders theres part of this on the delivery method, method type FulfillmentOrder - GraphQL Admin
Try this
query {
orders(first: 10) {
edges {
node {
id
fulfillments(first:10){
id
displayStatus
}
}
}
}
}```