当我减小ReceivedDate范围时,搜索消息会返回更多结果

时间:2018-10-11 10:36:42

标签: microsoft-graph outlook-restapi

我正在尝试使用Microsoft Graph搜索消息。我执行了两次搜索,并在两个搜索中指定了不同的received范围:

  1. https://graph.microsoft.com/v1.0/Users('user_id')/messages?$search="received>=2018-08-07T22:00:00Z AND received<=2018-09-28T22:00:00Z"&$select=id&$top=100-我有240个结果

  2. https://graph.microsoft.com/v1.0/Users('user_id')/messages?$search="received>=2018-08-07T22:00:00Z AND received<=2018-09-14T22:00:00Z"&$select=id&$top=100-我得到275个结果。

如您所见,我将received的范围从[2018-08-07; 2018-09-28]减小到[2018-08-07; 2018-09-14],但看到了更多消息。此外,我只使用了received过滤器。

为什么使用较小的日期窗口会收到更多结果?

1 个答案:

答案 0 :(得分:0)

根据您的描述,当您使用较小的日期窗口时,发现消息多于消息。

我已经尝试过了,并且有效。如果您经常遇到此问题,可以在the Github Issue

上提交问题