不支持使用过滤器对用户对象进行增量查询吗?

时间:2019-01-17 23:19:56

标签: azure-active-directory microsoft-graph

我正在尝试使用如下查询来跟踪AAD用户对象上的更改。 https://graph.microsoft.com/v1.0/users/delta?$ filter = accountEnabled eq true

不幸的是,我在图形资源管理器中收到了Request_UnsupportedQuery错误。难道只有 delta 查询不支持此功能吗?我可以使用以下相同的过滤器。 https://graph.microsoft.com/v1.0/users?$ filter = accountEnabled eq true

为什么在增量查询中MSFT图不支持此功能?谢谢!

1 个答案:

答案 0 :(得分:1)

它支持$filter,但是唯一受支持的$filter表达式用于跟踪特定对象$filter=id+eq+{value}上的更改。

请参阅:https://docs.microsoft.com/en-us/graph/api/user-delta?view=graph-rest-1.0#odata-query-parameters

enter image description here