I need to find a way to create queries (if possible) to track if the iteration path has been changed on a feature level. Is it possible? I have to track hundreds of feature so I cannot "follow" them.
I cannot seem to find a solution
I need to find a way to create queries (if possible) to track if the iteration path has been changed on a feature level. Is it possible? I have to track hundreds of feature so I cannot "follow" them.
I cannot seem to find a solution
I think you need to use REST API to fetch the work items of type "Feature", ask for field System.History, then on your end search for phrase "changed Iteration Path to". Here is the reference to start. You can also refer to THIS answer. It looks like you'll need to query one work item history at once. So you'll need some kind of cache / database to store last fetched state. You'll need last date time when you checked the items, then fetch via API items with Changed Date after your last check. It sounds like time triggered function.