With Microsoft Graph I can access rows from a table like this:
/v1.0/drives/..../workbook/worksheets/Sheet4/tables/2/rows
The documentation states:
This method supports the OData Query Parameters to help customize the response.
I am able to use the $select
query parameter:
/v1.0/drives/..../workbook/worksheets/Sheet4/tables/2/rows?$select=values.
But how can I use $search
or $filter
query parameters? For example, I want to search the rows where column 'employeeName'
contains the string "John"
.