Hi Everyone,
I'd like your help in identifying what could be wrong with the following JQL:
project in ("PROJECTS NAMES") AND issuetype = EPIC AND resolved >= 2022-04-01 AND resolved <= 2022-06-31 AND status IN (Closed)
It's not returning one issue resolved in 2022-06-31 and I can't figure out why.
If I change the range to end on "<=2022-07-01", so, the issue with the resolved date in 2022-06-31 appears.
Please, is there something I'm missing?
Thank you in advance.
Julieta.
Hello @Julieta Dienstmann
Refer to: https://support.atlassian.com/jira-software-cloud/docs/jql-fields/#Resolved
Resolved is a date/time field. If you provide only a date, then the time is assumed to be midnight, according to the documentation.
What I am seeing in practice is that it is implementing that as 12:00 am - the beginning of that date rather than the end of that date.
So when you use
resolved <= 2022-06-31
...you are getting the issues with a Resolved date of 2022-06-31 00:01 am or earlier, which would exclude issues resolved later in the day on 6/31.
This is validated by one of the examples provided in the above document:
Find all issues that were resolved on or before 31st December 2010:
resolved <= "2011/01/01"
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.