VSTS find workitems between two releases

笑着哭i 提交于 2019-12-07 12:06:57

问题


To compare the related work items between the current release and a previous release I can use the following:

Is there possible to create a query to get the same work items between two releases? Or alternatively the VSTS Rest API.

My reason for this is to create a list of Features > Stories > Tasks to fill the release notes. Using the above UI makes it pretty time intensive to find out the relation between the tasks and features.


回答1:


Retrieve work items by calling

https://{account}.vsrm.visualstudio.com/[teamproject]/_apis/Release/releases/{current release id}/workitems?api-version=4.1-preview.1&baseReleaseId={compare release id}

It just return the id, url of work items, you need to get details of work item through Get a list of work items REST API.



来源:https://stackoverflow.com/questions/48909858/vsts-find-workitems-between-two-releases

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!