Does Microsoft Graph provide full text search capabilities in v1.0 or beta?
In particular, I want to search the contents of the email body. I tried the following queries to check the various parts of the API:
https://graph.microsoft.com/v1.0/me/messages?$filter=body/content eq 'test'
with the answer
The property 'Body' does not support filtering.
and request
https://graph.microsoft.com/v1.0/me/messages?$filter=startswith(subject,'test')
with the answer
'contains' and 'startswith' are not supported for filtering. Use Search instead.
This last answer mentions some search function, but I cannot find this in the documentation.
source share