I'm having a lot of trouble filtering out unfulfilled orders.
I'm using the graphql admin api. This query:
{
shop {
orders(first: 20,query: "created_at:>2020-10-12 created_at:<2020-10-20 fulfillment_status:fulfilled") {
edges {
node {
name
displayFulfillmentStatus
}
}
}
}
}
Includes this order in the results:
{
"node": {
"name": "#REDACTED",
"displayFulfillmentStatus": "UNFULFILLED"
}
},
I've tried these query strings, too:
Please check this link out and let me know if it helps --> https://community.shopify.com/c/Shopify-APIs-SDKs/GraphQL-query-for-fulfilled-orders-amp-other-filte.... I recall running into this quirk and changing the criteria helped!
User | Count |
---|---|
28 | |
7 | |
7 | |
6 | |
5 |