Please help me to create JQL for checking all tickets that has commented during specified dates and hours.
Hi @Vache Manukyan,
If you have the following plugins installed
https://marketplace.atlassian.com/apps/6820/scriptrunner-for-jira?hosting=server&tab=overview
you can use the following JQL queries:
issueFunction in commented("before 2018/08/01") and issueFunction in commented("after 2018/07/25")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
You can not do it out of the box. You would need a plugin for it. There are couple of plugins available like ScriptRunner, JQL Search Extensions and other.
For example, if you have the JQL Search Extentions plugin, you could use the commentedOnDate function:
issue in commentedOnDate(
"2018-05-26"
)
You can find more info here:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.