Hi,
I want to find all issues (with JQL) that are un-commented, i.e. has no comments at all.
I have looked at the great Advanced Search page, but it only talks about finding strings within comments not if the comment itself exists or not.
Any ideas?
// Svante
Community moderators have prevented the ability to post new answers.
Script runner plugin, has hasComments. So you could use
issuefunction not in hasComments()
Ahhhh, the Script Runner does it again!!!
How would we survive without it! Thanks Jamie for a great plugin! There are new use-cases for it all the time!
// Svante
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.
Try this .
issueFunction in hasComments(0)
This is available in JQL without the need to resort to ScriptRunng
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
https://scriptrunner.adaptavist.com/latest/jira/jql-functions.html
Unfortunately that's a Scriptrunner function
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Download version 1.1 of plugin.
https://bitbucket.org/bhushan154/jira-miscellaneous-jql-functions/downloads
And search for
issue in issuesWithNoComments()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Haven't yet tested it. Let me know if you have any issues. Or raise them at https://bitbucket.org/bhushan154/jira-miscellaneous-jql-functions/issues?status=new&status=open
I just renamed the plugin so the new location for the download is
https://bitbucket.org/bhushan154/jira-miscellaneous-jql-functions/downloads
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
great stuff, Bhushan!
I will try it out! Are you planning to launch this plugin at the marketplace?
// Svante
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Also take a look at www.jiradev.com. It has a bunch of tutorials for JIRA development :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Probably when I have a collection of 25 useful JQL functions ;)
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.