Reputation: 175
I'm working in Azure DevOps and have a notification query set to alert me when an iteration path or area path is changed. Unfortunately anytime a new item is created, it is viewed as changed. I need to refine this query to disclude "New" items.
The Notifications Query fields/operators and values are not as expansive as they are when building a regular query (Boards > Queries).
Here is the query:
Notifications Query in Azure DevOps
Ideally the results of this query would only be changes to existing items, but no new items.
Upvotes: 1
Views: 324
Reputation: 26992
You can add the following filter criteria:
Rev > 1
New work items are created with a Rev
of 1
and subsequent modifications will increment that rev/revision/version number.
Upvotes: 1