Azure web api 如何查看层次结构 related/linked 票证

Azure web api how to view hierarchy related/linked ticket

我有一张 azure 史诗票 (1165),它有一个链接的 child 故事票 (1162)

我希望能够在 json api 视图中查看此链接的 child 票证字段,如果我访问 api url我的票是这样的:

https://dev.azure.com/{organization}/dc37----8a2/_apis/wit/workItems/1165

我可以看到大部分字段,除了缺少链接的 child 任务。你可以在我的图片中看到我按 ctrl+f 搜索了显示的我的票的描述。

有什么方法可以格式化我的 url 以便我可以看到我的门票链接 child 项目?谢谢

&$expand={$expand} 添加到 URL 的末尾:

https://dev.azure.com/{organization}/dc37----8a2/_apis/wit/workItems/1165?$expand=relations

文档:https://docs.microsoft.com/en-us/rest/api/azure/devops/wit/work-items/get-work-item?view=azure-devops-rest-7.1#workitemexpand

然后检查 relations 部分: