It would be great if we had a status filter on order fulfillments so that we do not have to filter them in our application logic. It makes way more sense to filter them at the source.
{
order(id:"gid://shopify/Order/6200248434893"){
fulfillments(first:10 status:SUCCESS){
status
id
fulfillmentLineItems(first:10){
nodes{
id
lineItem{
sku
refundableQuantity
}
}
}
}
}
}