I currently have a query set up in TFS 2015 with the following parameters:
- Work Item Type = [Any]
AND
- State <> Done
AND
- Assigned To = Derek Antrican
This is working well, but currently it will continue to show parent items that I have completed tasks for (because another tfs member has yet to complete a task for that parent). I would like to exclude parent items that have no more tasks assigned to me that are yet to be completed. So ending up with something like this:
- Work Item Type = Task
AND
- Work Item Type = Product Backlog,Bug IF Child Assigned To = Derek Antrican AND Child State <> Done
AND
- State <> Done
AND
- Assigned To = Derek Antrican
How do I implement the bold part above?