TFS Wiql query to get a list of fields

Viewed 19

Hi I am trying to query a the following list of fields in tfs using wiql:

Dev engineer, Sprint, Epic title, Feature title , story title , story points , work item , original est time , completed time , remaining time

I have been able to query the results using the following but I am not able to create a custom field for Feature title

...

Select [System.Id],

[System.AssignedTo],
[System.IterationId],
[System.Title],
[System.ChangedDate],
[Microsoft.VSTS.Scheduling.StoryPoints],
[Microsoft.VSTS.Scheduling.OriginalEstimate],
[Microsoft.VSTS.Scheduling.CompletedWork],
[Microsoft.VSTS.Scheduling.RemainingWork],
[System.IterationPath]     

From workitemLinks

...

0 Answers
Related