When I give created = "2015/09/02" or updated = "2015/09/02" in a filter query, it does not result in any data. But there are bugs which have been either created or modified on this date.
Giving the exact date will not help as it indicates 12:00AM in the morning. Try giving the period:
created >= "2015/09/02" and created < "2015/09/03" (i.e. next day, depends on your day format).
You can also use functions like startOfDay() and endOfDay().
Minor detail, do not forget "updated" (created >= "2015/09/02" and created < "2015/09/03") or (updated >= "2015/09/02" and updated < "2015/09/03")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Jobin & Nick. It worked for me. I would also like to know how to get the status of bugs at a point in time. For eg. the status of bugs for 09/03/2015 is Open/Reopened: 30 Resolved: 25 Closed: 45 In Progress: 2 How do I get the status as of 09/01/2015? Thanks Sandeep
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can't do this with searching. Searching returns the current state. But you can search based on history of status. For example, status changed from xyz to abc after -10d by jobin And so on..
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.