Microsoft Graph-获取没有特定类别的电子邮件

时间:2019-01-31 05:27:00

标签: microsoft-graph

我找到了有关如何获取具有特定类别的所有电子邮件的信息。他们几乎都建议这样做:

https://graph.microsoft.com/v1.0/me/messages?$ filter = categories / any(a:a + eq +'Red + Category')

但我希望与此相反,理想情况是:

https://graph.microsoft.com/v1.0/me/messages?$ filter = categories / (a:a + eq +'Red + Category')

我已经尝试过了,但是它只返回了所有电子邮件:

https://graph.microsoft.com/v1.0/me/messages?$ filter = categories / any(a:a + ne +'Red + Category')

我将如何检索红色类别中没有的所有电子邮件?

0 个答案:

没有答案