Provide a Status filter on Fulfillments

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
          }
        }
      }
    }
  }
}

Can you get to the same information via the fulfillment orders? :thinking:

If you go for fulfillmentOrders where the status is Complete or In Progress. Then you can loop over the fulfillments there?
Not sure if thats any better or not