我有一個針對Rally Analytics的查詢,該查詢返回的數據集大於pagesize。所以我想做另一個查詢來返回剩餘的數據集。我嘗試設置一個startindex值,但這不起作用,StartIndex保持爲0.Rally Analytics設置查詢的起始索引
this.query = {
find:Ext.encode(requestedQuery.find),
StartIndex:20000,
pagesize:20000 //MAX_PAGESIZE
};
_queryAnalyticsApi:function() {
Ext.Ajax.request({
url:"https://rally1.rallydev.com/analytics/1.27/" + this.workspace + "/artifact/snapshot/query.js?" + Ext.Object.toQueryString(this.query) +
"&fields=" + JSON.stringify(this.requestedFields) + "&sort={_ValidFrom:1}",
method:"GET",
//need to change this to a POST
success:function (response) {
this._afterQueryReturned(JSON.parse(response.responseText));
},
scope:this
});
},
我認爲Lookback API的長遠目標是在服務器上完成這些聚合中的某些聚合。 –