java - How to query for user story time in Rally -
java - How to query for user story time in Rally -
using java, query rally amount of time user stories in specific project took complete become "accepted". have familiarity rally api already, , have used gather defect data.
does have suggestions on how this? thanks!
references: http://rallytools.github.io/rallyresttoolkitforjava/ https://github.com/rallytools/rallyresttoolkitforjava/wiki/user-guide
i have access rally web services api documentation v2.0 @ https://rally1.rallydev.com/slm/doc/webservice/
instead of looking "defects" query "heirarchicalrequirements"
queryrequest ustore = new queryrequest("hierarchicalrequirement"); ustore.setlimit(integer.max_value); ustore.setfetch(new fetch("formattedid","name","parent","feature","blocked","planestimate","schedulestate","release","iteration","owner","project")); ustore.setqueryfilter(new queryfilter("feature.name","=",feature.getname())); queryresponse usresp = restapi.query(ustore);
java rally
Comments
Post a Comment