We are using Graph API for one of our excel-based applications. Currently, we have planned to use range API to retrieve the values for specific excel rows. Our queries are like following https://graph.microsoft.com/v1.0/me/drive/items/{
{ITEM_ID}}/workbook/worksheets/{
{worksheet_id}}/range(address='A1:Z100') which works. But now we want to add some filters in the query like we want to query any row that has a value for A=1234 but when we tried adding such filter on the URL, it says bad request. Look at the following query https://graph.microsoft.com/v1.0/me/drive/items/{
{ITEM_ID}}/workbook/worksheets/{
{worksheet_id}}/range(address='A1:Z1')?$filter='A eq 1234'
Could you suggest to us any API that can achieve the above use case?