I need to write a JQL query, that returns issues, that were commented by some specific user in a specific time. For example, all issues, that were commented today by "irina".
I try to use something like this, but it returns issues, that containt comments of "irina" and were updated today - not necessary with the comment:
issueFunction in commented ("by irina") and updatedDate > startOfDay()
Hi Irina,
Try something like this
issueFunction in commented(
"after -1d by irina"
)
That should return all the issues where you made a comment in the last day
Thank you! It works.
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.