我需要为 BurnDownApp 添加一些自定义。我想从“发布组合框”+所有用户故事中检索所有要发布的用户故事,这些故事链接到与发布相关的投资组合项目功能。
在默认实现中,我只能检索链接到发布的用户故事:
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