Pulling back user stories from the Rally web service v1.39 (using the .NET Rest API) - I thought that setting the pagesize value would actually limit the number of records in the results collection. However that seemed to have no effect at all. Setting the Limit value does affect the number of results.
Could someone please explain what the difference is and why pagesize doesn't do what I was expecting.
public static QueryResult GetProjectUserStories(string projectReference, int start)
{
var restApi = GetApi();
var pageSize = (Convert.ToInt32(WebConfigurationManager.AppSettings["RallyPageSize"]));
var request = new Request("HierarchicalRequirement")
{
Fetch = new List<string>()
{
"Name",
"Description",
"FormattedID",
"TaskEstimateTotal"
},
Query = new Query("Project.Name", Query.Operator.Equals, projectReference),
PageSize = pageSize,
Limit = pageSize,
Start = start
};
var queryResult = restApi.Query(request);
return queryResult;
}
I thought maybe this might be being translated into a "FindAll" search - but then why have a page size attribute?
