Azure active directory Graph Beta RiskDetection API对带有“的查询失败”;少于$组合式过滤器w/“$top";

Azure active directory Graph Beta RiskDetection API对带有“的查询失败”;少于$组合式过滤器w/“$top";,azure-active-directory,microsoft-graph-api,Azure Active Directory,Microsoft Graph Api,我一直在查询riskDetection API,并通过“DetectedDateTime”进行分页过滤,以仅获取特定时间范围内的事件。今天早上,此API调用开始失败,仅针对我们的一个租户,并且仅针对riskDetection端点(IdentitySkeevents工作正常) 对于涉及le的查询,我得到以下错误: { "error": { "code": "UnknownError", "message": "", "innerError": { "requ

我一直在查询riskDetection API,并通过“DetectedDateTime”进行分页过滤,以仅获取特定时间范围内的事件。今天早上,此API调用开始失败,仅针对我们的一个租户,并且仅针对riskDetection端点(IdentitySkeevents工作正常)

对于涉及
le
的查询,我得到以下错误:

{
  "error": {
    "code": "UnknownError",
    "message": "",
    "innerError": {
      "request-id": "29ec0904-8655-43d2-a422-7e7554313906",
      "date": "2020-01-22T19:18:29"
    }
  }
}

似乎是$top和$filter=detectedDateTime+le+的组合。。。正在导致错误。最近有没有人遇到过这个问题/知道这是微软方面的问题,还是我的查询语法/其他问题

已经尝试过您的呼叫,但是$top和$filter=detectedDateTime+le组合使用效果良好。对于这种特殊情况,请将您的请求id带到Azure支持团队以查找问题。您已经尝试了您的呼叫,但对于$top和$filter=detectedDateTime+le的组合来说效果很好。对于这种特殊情况,请将您的请求id带到Azure支持团队以查找问题。
// This one works
https://graph.microsoft.com/beta/riskDetections?$orderby=detecteddatetime+desc&top=500&filter=(detectedDateTime+ge+2020-01-19T18:06:04Z) 

// This one returns UnknownError
https://graph.microsoft.com/beta/riskDetections?$orderby=detecteddatetime+desc&top=500&filter=(detectedDateTime+ge+2020-01-19T18:06:04Z)

// This one works
https://graph.microsoft.com/beta/riskDetections?$orderby=detecteddatetime+desc&filter=(detectedDateTime+le+2020-01-19T18:06:04Z)