尝试利用WIQL编辑器功能: “曾经包含标签”
搜索语法,尝试和错误
Select
[System.Id],
[System.Title],
[System.State],
[System.Tags]
From WorkItems
Where [System.WorkItemType] = 'Change Request'
AND [State] <> 'Closed'
AND [State] <> 'Cancelled'
AND EVER [Tags] CONTAINS 'My Tag'
order by [Microsoft.VSTS.Common.Priority] asc,
[System.CreatedDate] desc
期望它返回所有具有特定标签的工作项。