0

我有一个要求find

"find":  {
      "Project": 123,
      "_TypeHierarchy": "HierarchicalRequirement",
      "fields": ["FormattedID","ScheduleState"],
      "hydrate": "ScheduleState",
      "compress": true
}

它返回重复的快照,例如:

Results: 
[
{
ScheduleState: "Defined",
FormattedID: "US3000"
},
{
ScheduleState: "Defined",
FormattedID: "US3000"
},
{
ScheduleState: "Defined",
FormattedID: "US3000"
},

还尝试了这个端点:

  https://rally1.rallydev.com/analytics/v2.0/service/rally/workspace/100/artifact/snapshot/query.js?find={"Project":123,"_TypeHierarchy":"HierarchicalRequirement"}&fields=["FormattedID","ScheduleState"]&hydrate=["ScheduleState"]&compress=true

返回相同的重复项。

“压缩”选项是否应该根据所选字段值的变化减少查询返回的快照数量?ScheduleState 没有变化,因为重复的快照显示相同的“已定义”状态。US3000 这个故事还有其他变化,PlanEstimate 发生了变化,但它并没有受到影响。我的语法有问题吗?

4

1 回答 1

3

要使压缩工作,您必须在请求的字段列表中包括 _ValidFrom、_ValidTo 和 ObjectID。试试看。

于 2014-05-20T13:12:08.940 回答