I have this WIQL...
Wiql wiql = new Wiql()
{
Query = string.Format("SELECT [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State]" +
" FROM WorkItemLinks" +
" WHERE Target.[System.TeamProject] = '{0}'" +
" AND Source.[System.Id] = {1}" +
" AND [System.Links.LinkType] = 'System.LinkTypes.Hierarchy-Forward'" +
" mode(Recursive)", project, startingChildId)
};
And I want to make it match this TFS Query where all parents of a particular work item are put into a tree as seen below.
My problem is that I'm only getting the child work items from the case that I want the parent work items. How can I traverse up the tree rather than down it? I have already tried switching System.Links.LinkType
to the parent relation equivalent, but doing so throws an unsupported error.
Check the WIQL below:
select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State]
from WorkItemLinks
where ([System.Links.LinkType] = 'System.LinkTypes.Hierarchy-Forward')
and (Target.[System.Id] = 4839)
order by [System.Id]
mode (Recursive, ReturnMatchingChildren)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With