Reputation: 5223
I have a requirement to query all audit where original estimate has been changed. Is that possible with the DevOps REST api?
Upvotes: 1
Views: 421
Reputation: 19381
At this moment, I am afraid that we could not get all work items where original estimate changed through rest api.
As a workaround , we could add a custom field in our custom process that gets set the value to true
when the original estimate field has changed :
Note the type of the custom field is Boolean
Then add a Rules to set the value of the custom field to true if the original estimate field has changed (The default value of the custom Test01 field is false):
When original estimate field changed , the value of Test01 field will change from fasle to true.
Finally, we could query the Bug work items where original estimate changed with following conditions (the same settings to Task):
Hope this helps.
Upvotes: 4