Microsoft Graph 在 v1.0 或 beta 中是否提供任何全文搜索功能?
具体来说,我想搜索电子邮件正文内容。我尝试了以下请求,只是为了测试 API 的不同部分:
https://graph.microsoft.com/v1.0/me/messages?$filter=body/content eq 'test'
带有响应消息
The property 'Body' does not support filtering.
并要求
https://graph.microsoft.com/v1.0/me/messages?$filter=startswith(subject,'test')
带有响应消息
'contains' and 'startswith' are not supported for filtering. Use Search instead.
最后一个回复提到了一些搜索功能,但我在文档中找不到这个。