Hello Shadi, Good afternoon and thank you for your question. Can I please know what are you trying to achieve here?
- Are you trying to retrive properties and relationships of tablerow object?
- Are you trying to get row based on its position in the collection?
- Are you trying to get range object associated with the entire row? I tested it by using Graph Explorer by first having rows only and it provided a response for all rows(index):
GET v1.0 https://graph.microsoft.com/v1.0/me/drive/items/{itemID}/workbook/tables/Table2/rows
Although, when I tried to add OData query parameters such as filters, it shows all rows again:
GET v1.0 https://graph.microsoft.com/v1.0/me/drive/items/{itemID}/workbook/tables/Table2/rows?filter=Language eq 'French'
Where as:
Table2 is the name of the tablerow
Language is the column
French is the value
REFERENCE:
Use query parameters to customize responses
https://learn.microsoft.com/en-us/graph/query-parameters?tabs=http
Use the filter query parameter
https://learn.microsoft.com/en-us/graph/filter-query-parameter?tabs=http