Getting "Access denied for returnableFulfillments field" although having the necessary permissions

Hi

returnableFulfillmentsQuery calls started failing with:

Access denied for returnableFulfillments field

Although my app does have the read_returns and write_returns permissions.

For reference , I’m using the following GQL query:

query returnableFulfillmentsQuery($orderId: ID!, $first: Int!) {
  returnableFulfillments(orderId: $orderId, first: $first) {
    edges {
      node {
        id
        fulfillment {
          id
        }
        returnableFulfillmentLineItems(first: $first) {
          edges {
            node {
              fulfillmentLineItem {
                id
                lineItem {
                  id
                }
              }
              quantity
            }
          }
        }
      }
    }
  }
}

Can someone please assist in understanding what am I missing? did something change in terms of permissions to this query?