Azure DevOps Wiql API将字段添加到Response工作项

问题描述

我正在寻找一种方法(或查询)在此查询的响应上添加workItem字段:

{
  "query": "Select [System.Id],[System.Title] From WorkItems Where [System.WorkItemType] = 'Task' OR [System.WorkItemType] = 'Bug'"
}

当前响应:

{
    "queryType": "flat","queryResultType": "workItem","asOf": "2020-08-17T15:13:32.75Z","columns": [
        {
            "referenceName": "System.Id","name": "ID","url": "https://dev.azure.com/.../_apis/wit/fields/System.Id"
        },{
            "referenceName": "System.Title","name": "Title","url": "https://dev.azure.com/..._apis/wit/fields/System.Title"
        }
    ],"workItems": [
        {
            "id": 27,"url": "https://dev.azure.com/.../_apis/wit/workItems/27"
        },{
            "id": 44,"url": "https://dev.azure.com/.../_apis/wit/workItems/44"
        }
]
}

我需要在每个工作项上展开字段,就像我会做一个GET workitems API request一样,即使可能?$ expand = relations

这将是我在WorkItems上的预期输出 预期的响应:

{
    "queryType": "flat","url": "https://dev.azure.com/.../_apis/wit/fields/System.Title"
        }
    ],"workItems": [
{
    "id": 27,"rev": 22,"fields": {
        "System.AreaPath": "Cloud","System.TeamProject": "Cloud","System.IterationPath": "Cloud\\Sprint 6","System.WorkItemType": "Task","System.State": "Closed","System.Reason": "Completed","System.AssignedTo": {...},"System.CreatedDate": "2020-02-24T15:52:08.867Z","System.CreatedBy": {...},"System.ChangedDate": "2020-06-24T14:48:26.593Z","System.ChangedBy": {...},"System.CommentCount": 6,"System.Title": "Add XCAL import support to AAT3 framework and GUI","Microsoft.VSTS.Common.StateChangeDate": "2020-06-24T14:48:26.593Z","Microsoft.VSTS.Common.ActivatedDate": "2020-06-03T00:47:20.397Z","Microsoft.VSTS.Common.ActivatedBy": {...},"Microsoft.VSTS.Common.ClosedDate": "2020-06-24T14:48:26.593Z","Microsoft.VSTS.Common.ClosedBy": {...},"Microsoft.VSTS.Common.Priority": 2,"Microsoft.VSTS.Common.ValueArea": "Business","WEF_DA224280DD46429CA75C96DC1082D816_Kanban.Column": "New","WEF_DA224280DD46429CA75C96DC1082D816_Kanban.Column.Done": false,"System.Description": "...","System.Parent": 45
    },"relations": [...],"_links": {...},"url": "...workItems/27"
},...
        }
]
}

解决方法

恐怕WIQL Rest API 无法返回详细的工作项信息。

但是您可以使用WIQL获取工作项ID,并将ID发送给Work item -List。在这种情况下,您可以获得工作项信息。

这是PowerShell脚本示例:

$token = "PAT"

$url="https://dev.azure.com/Organizationname/_apis/wit/wiql?api-version=5.1"

$token = [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes(":$($token)"))

$JSON = @'
{
   "query": "SELECT [System.Id],[System.WorkItemType],[System.State],[System.AreaPath],[System.Tags],[System.CommentCount],[System.ChangedDate] FROM workitems WHERE[System.Id] IN(@follows) AND [System.TeamProject] = 'Azure' AND [System.State] <> '' ORDER BY [System.ChangedDate] DESC"
}
'@

$response = Invoke-RestMethod -Uri $url -Headers @{Authorization = "Basic $token"} -Method Post -Body $JSON -ContentType application/json

$listOfTasks = New-Object Collections.Generic.List[String]
ForEach( $workitem in $response.workItems ) {
  $listOfTasks.Add($workitem.id)

}
$listOfTasks = $listOfTasks -join ','
$listOfTasks

$url1="https://dev.azure.com/Organizationname/ProjectName/_apis/wit/workitems?ids=$listOfTasks" +"&" + "`$expand" + "=all&api-version=5.1"

$response1 = Invoke-RestMethod -Uri $url1 -Headers @{Authorization = "Basic $token"} -Method Get 

Write-Host "result = $($response1 | ConvertTo-Json -Depth 100)"

说明:

第一部分是通过wiql获取工作项ID。

第二部分是将工作项目ID列表添加到工作项目列表api,以获得所有工作项目的特定信息。

结果在这里:

enter image description here

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...