Hi all, I am using the GraphQL explorer for my shop and I have this query:
{
orders(first:10, query:"fulfillment_status:null") {
edges {
node {
id
name
displayFulfillmentStatus
fulfillable
}
}
}
}
However, I still have “displayFulfillmentStatus” of “UNFULFILLED” and “FULFILLED”.
I am using this previous question and documentation as a reference
https://shopify.dev/docs/admin-api/rest/reference/orders/order
https://community.shopify.com/topic/495386
Thanks!