Grabbing CreationDate of Defect Objects

81 Views Asked by At

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!

1

There are 1 best solutions below

1
On

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:

creationDate = defects[i].CreationDate;