【发布时间】:2016-08-03 05:25:29
【问题描述】:
我需要为 BurnDownApp 添加一些自定义。 我想从“Release Combobox”中检索所有要发布的用户故事 + 所有与发布相关的投资组合项功能相关的用户故事。
在默认实现中,我只能检索链接到发布的用户故事:
find: {
"_TypeHierarchy": { '$in' : [ -51038] },
"Children": null
}
我尝试使用这个查询:
find:{
$and:
[{"_TypeHierarchy": -51038, "Children": null},
{"_TypeHierarchy": { '$in' : [ -51038, -51006 ] },
"Children": null
"Feature.Release.Name": "%ReleaseName%"}]
}
但它不起作用
我应该如何更改查询以获取所需数据?
链接到 github 上的 BurnDownApp:https://github.com/RallyApps/app-catalog/tree/master/src/apps/charts/burndown
【问题讨论】:
标签: rally appsdk2 lookbackapi