How can I find the CreationDate of a Defect Object in rally?
I have an array of defects objects, and I am able to find all the attributes of defects by doing the following in a loop:
project = defects[i].Project.Name;
environment = defects[i].Environment;
etc for all the other attributes I want, but CreationDate doesnt work...
I tried
creationDate = defects[i].PersistableObject.CreationDate;
creationDate = defects[i].CreationDate;
But it returns 'undefined'
Any ideas?
Thanks!
Did you include CreationDate in the fetch for your request? If so you should be able to access it on each result as you did above: