We would like to search for issues that have the same created and updated date, but we can't find a good and generic way to do: createdDate = updatedDate.
We can use tricks like "project = MDEV and updatedDate >= -8h and createdDate >= -8h" but it's not good enough since it cannot be used to find issues much further in time.
Apparently, the addition plugin such as: https://www.j-tricks.com/jql-tricks-plugin.html, don't help.
I guess, that it's possible with a custom field, but I wanted a more simple & light solution.
It can be accomplished using the ScriptRunner add-on with the following JQL:
issueFunction in dateCompare("", "created = updated")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In hindsight, I see that I was too quick to recommend this, as it checks for equality not only on the date component, but also the time component, which you stated you do NOT want to check. Sorry about that. I'm not sure offhand how to limit the check just to the date.
-Payne
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.