通过超链接查询VSTS时如何指定“日期精度”

时间:2019-02-19 03:22:10

标签: azure-devops azure-devops-rest-api wiql

我正在构建有关VSTS工作项的电子邮件报告,其中有一些应打开VSTS查询的链接。 WIQL查询作为超链接URL的一部分传递,请参见以下链接:

Define a query as a hyperlink

我传递DateTime作为日期和时间([System.CreatedDate]> ='2019-02-18T08:00:00.0000000Z')不仅是日期。打开的页面出现以下错误

You cannot supply a time with the date when running a query using date precision. The error is caused by «[System.CreatedDate] >= '2019-02-18T08:00:00.0000000Z'».

我尝试在URL的末尾添加?timePrecision=true,但这无济于事。

您知道如何在超链接中使用WIQL并传递日期和时间吗?

1 个答案:

答案 0 :(得分:0)

作为超链接查询尚不支持timePrecision。您需要使用rest api Wiql - Query By Wiql来使用时间精度,例如:

POST https://dev.azure.com/{organization}/{project}/{team}/_apis/wit/wiql?timePrecision=true&api-version=5.0

{
"query": "SELECT [System.ID], [System.Title], [System.State] FROM WorkItems WHERE [System.TeamProject]='xxxx' AND [System.CreatedDate]>='2019-01-25 11:00 AM'"
}

同时,您可以在下面的网站上提交建议,以在将查询定义为超链接时建议支持timePrecision

https://developercommunity.visualstudio.com/content/idea/post.html?space=21