Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用新的 Rally Lookback API 进行一些查询,并且想知道在这个问题中讨论的传统 Rally Web 服务中与故事计数 REST 请求类似的 Lookback API 是什么:
通过 WSAPI 在服务器端计数?
这将返回特定故事的所有缺陷的所有 ObjectID:
https://rally1.rallydev.com/analytics/1.27/<YourSubscriptionOID/artifact/snapshot/query.js?find={_Type:"Defect",_ItemHierarchy:<OIDofStory>,__At:"current"}&fields=["ObjectID"]
如果您真正想要的只是计数,请添加:
&pagesize=1
并从结果的顶部取出 TotalResultCount。