Reputation:
So I have a a list of tfs work items of one particular type ("Test Case") and I want to find all work items of another type ("Review) that are linked to at least one of the ones of the first list.
How would I go about and define such a query (or a number of queries.. but if multiple are necessary, obviously the fewer the better)?
Upvotes: 0
Views: 2141
Reputation: 52788
Create your query with the clause for Work Item Type
of Test Case
.
Change the Type of Query
to Work Items and Direct Links
, then in the second Filter control set the clauses you want for the linked work items.
It should look something like this (taken from Dev11 but pretty much the same in VS2010):
Upvotes: 1