How can I retrieve 'Request denied' orders using GraphQL API?

Hi! I’m currently using the graphQL API to retreive data from orders, in my query i want to get all the orders that are marked as “Unfulfilled”, but i realized i also need the ones that are marked as “Request denied”.
My query looks like this:

query { orders(first: 40, query: "fulfillment_status:'unfulfilled'") { pageInfo { hasNextPage endCursor } edges { node { id name lineItems(first: 10) { edges { node { fulfillmentStatus quantity variant { sku } } } } } } } }

Is there a way in wich i can get the “Request denied” orders too?
Thanks and Ill be waiting for your answers :slightly_smiling_face: