Search code examples
tfschangeset

How to Query for Changesets in TFS Web interface


In TFS web interface I can query for items with various link types:

enter image description here

However, Changesets, while they are a legitimate and distinct link type in TFS are not included in that list:

enter image description here

Using the web interface, how does one query for Work Items that either do, or do not include links of the type Changeset?


Solution

  • You are right. There is just not changeset LINKS field in default TFS Work Item Query Editor on web interface. Since if you do a Query and include external link count >0 this will actually give you all work items that have changesets associated with it.

    Another way is using TFS API to achieve it. Suggest you use the way provided by Buck in this great blog: Listing the work items associated with changesets for a path

    More ways please look at this similar question: How can I query work items and their linked changesets in TFS?