The response without fulfillment_status query return data that have fulfilled status but when I try to only get fulfilled item the nodes are empty I don’t know why the resource I am using is
query MyQuery {
orders(
first: 50
reverse: true
sortKey: CREATED_AT
query: "channel:web AND fulfillment_status:fulfilled"
) {
nodes {
id
fulfillments(first: 10) {
trackingInfo {
number
}
displayStatus
id
}
displayFulfillmentStatus
fulfillable
}
}
}