1
votes

I am trying to track the changes on AAD user objects using the query like below. https://graph.microsoft.com/v1.0/users/delta?$filter=accountEnabled eq true

Unfortunately I got an error Request_UnsupportedQuery in Graph Explorer. Is this only unsupported for delta query? I can use the same filter as below. https://graph.microsoft.com/v1.0/users?$filter=accountEnabled eq true

Any reason why MSFT graph does not support this in delta query? Thanks!

1

1 Answers

1
votes

It supports $filter, but the only supported $filter expression is for tracking changes on a specific object: $filter=id+eq+{value}.

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

enter image description here