azure devops cli 查询工作时间

azure devops cli to query worktiems

我想使用 azure devops cli 通过 WIQL 或保存的查询来查询工作项。我试着查看 azure cli 文档 az boards 但它有一个工作项 ID 查询。 谁能告诉我如何使用 az cli 查询工作项。

您可以使用带有 --wiql 参数的 az boards query 命令来查询工作项查询语言格式的工作项。

这是一个例子:

az boards query --wiql "SELECT [System.Id], [System.Title], [System.AssignedTo], [System.State], [System.AreaPath], [System.IterationPath], [System.Tags], [System.CommentCount] FROM workitems WHERE [System.TeamProject] = 'sandbox' AND [System.State] IN ('Active') ORDER BY [System.IterationPath]"

同样,对于从命令行保存的 运行 查询,使用 --id 传递现有查询的 ID。

例如:

az boards query --id f28b2cd7-843d-4129-aht5-6dcf1e04f11b

参考: