gpt4 book ai didi

javascript - WIQL 的 VSTS 查询不返回请求的字段

转载 作者:行者123 更新时间:2023-12-03 23:22:50 26 4
gpt4 key购买 nike

我正在 VSTS 中构建一个小部件,并从 Work Item Tracking 休息客户端调用 queryByWiql() 方法。

我的查询是:

queryString = {
"query": "Select [Microsoft.VSTS.Scheduling.RemainingWork]
From WorkItems
Where [System.WorkItemType] = 'Task'
AND [System.State] <> 'Done'
order by [System.CreatedDate] desc"
};

但结果看起来像这样,其中没有一个工作项实际上包含剩余工作信息:

enter image description here

对于我请求的任何字段都是如此;标题,状态,分配给等。
我请求的字段将出现在列下。但是没有一个工作项本身会有这些信息。

为什么会这样?我该如何解决?干杯

最佳答案

这是预期的行为。目前,无法调用 API 从 WIQL 查询中直接返回详细的工作项信息。您需要分两步获取这些信息:

  • 从您已完成的 WIQL 中获取工作项的 ID。
  • 通过 Get a list of work items by ID 获取这些工作项.你可以specify the field to get在这一步。

  • WIQL Query上的说明页:

    After executing a query, get the work items using the IDs that are returned in the query results response. You can get up to 200 work items at a time.

    关于javascript - WIQL 的 VSTS 查询不返回请求的字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38429074/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com