2016-02-01 57 views
5

Microsoft Graph是否提供v1.0或beta版本中的任何全文搜索功能?office365 microsoft graph全文搜索

具體而言,我想搜索電子郵件正文內容。我曾嘗試以下請求只是爲了測試出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. 

This l ast響應中提到了一些搜索功能,但我無法在文檔中找到它。

回答

3
+2

謝謝,這個效果很好!您是否能夠在Microsoft搜索功能中找到任何官方文檔? $ search看起來很強大,但能夠獲得一些細節會很棒。 – Guven

+0

https://graph.microsoft.io/en-us/docs/overview/query_parameters – AndrewS