I am trying to use this query, to filter all the bugs that were closed / resolved since yesterday, how can i do it.
project = TEST AND issuetype != Story AND (status in (Closed, Resolved) and updated = endOfDay(1)) ORDER BY updated DESC, reporter ASC, key DESC
You shouldn't really use the '=' operator with startOf/endOf functions because
resolved = startOfDay()
will only return issues that have been resolved EXACTLY at 00:00 of the current day.
That said if you want to get all issues resolved since yesterday you need to use
resolved >= startOfDay(-1)
which will return all issues resolved from the beginning of yesterday.
Thank you for this! My field was in the next gen project so I clicked the admin cog > issues > Custom fields > click the 3 dots > Edit details > then changed the search template.
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.