图:按singleValueExtendedProperties过滤事件

时间:2017-10-18 13:29:04

标签: microsoft-graph

我正在尝试使用单值扩展属性进行过滤,根据文档:

https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/api/singlevaluelegacyextendedproperty_get

我有一个包含大量活动的日历(大约40k个活动)。每个活动都有一个名为“ExpedienteId'”的属性,我正在尝试按以下方式过滤此属性:

https://graph.microsoft.com:443/v1.0/users/myuser@mytenant.onmicrosoft.com/calendars/CALENDARID/events?$filter=singleValueExtendedProperties/Any(ep: ep/id eq 'String {e363423c-3db9-4cf1-b2bf-3777d331d5e7} Name ExpedienteId' and ep/value eq '6313')

我第一次执行请求时,得到了这个结果:

{
    "error": {
        "code": "UnknownError",
        "message": "",
        "innerError": {
            "request-id": "a848a095-983a-460e-a9bf-4089b22aa485",
            "date": "2017-10-18T12:47:07"
        }
    }
}

503服务不可用

但是,第二次执行请求时,我几乎立即收到了正确的结果(已过滤)(看起来查询已被缓存)。

第一次通话有什么问题?这种过滤器有没有限制?

0 个答案:

没有答案