我正在尝试在我的 WorkItems 上使用 Azure DevOps 执行 POST 请求,并获取 WorkItems 上的所有 Others Tags。这是我的查询
https://dev.azure.com/ {orgenezation}/{project}/{Team}/_apis/wit/wiql?api-version=5.1 并且正文是
{
"query": "select [System.Id],[System.Description], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItems where [System.TeamProject] = @project and [System.Tags] contains 'Automation' and [System.Tags] contains 'board1'"
}
由于某种原因,我没有得到正确的数据并且结果中缺少数据,例如描述、标签。
...
"workItems": [
{
"id": 6441,
"url": "https://dev.azure.com/{org}/eb25462e-351c-4364-a55a-e9e6029bffba/_apis/wit/workItems/6441"
},
{
"id": 6442,
"url": "https://dev.azure.com/{org}/eb25462e-351c-4364-a55a-e9e6029bffba/_apis/wit/workItems/6442"
},
...
这个问题我该怎么办?