我找到了有关如何获取具有特定类别的所有电子邮件的信息。他们几乎都建议这样做:
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')
我将如何检索红色类别中没有的所有电子邮件?