通过超链接查询VSTS时如何指定"date precision"

How to specify "date precision" when querying VSTS through a hyperlink

我正在构建一个关于 VSTS 工作项的电子邮件报告,其中我有一些应该打开 VSTS 查询的 links。 WIQL 查询作为 hyperlink URL 的一部分传递,请参阅以下 link:

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,但没有用。

知道如何在 hyperlink 中使用 WIQL 并传递日期和时间吗?

作为超链接的查询尚不支持 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将Query定义为超链接:

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