Hi, would it be possible to make tasks that are not closed and uncommented appear in the queue for the last 24 hours? I tried to do it anyway but failed. The task should only display open, incomplete, or modified. Could you help?
Hi all,
As already pointed out on previous comments, it is not possible to search for issues having a specific number of commnets or not having comments at all using standard features.
You must go for a third-party instead, using i.e. JQL Booster Pack you can type the following:
Search for unresolved tasks without comments and not updated in the last 24h
type = Task AND resolution IS EMPTY AND updated >= -24h AND issue NOT IN hasComments()
(*) This is only an example, you can tune the above query to meet your needs as your own and use this one as a base.
References:
Hope this helps you to create awesome queries <3
Kind regards
Hey @gifxz - the comments JQL: The field 'comment' does not support searching for EMPTY values. Since the comment fields only supports ~ or ~!, which is contains or does not contain, some text... there is no way to know the uncommitted cards. Here is a query that may work:
issuetype in (Task) AND updated > endOfDay(-1) and status in (Open, Incomplete, Modified)
You may want to add ORDER BY updated DESC to work top down. Please let me know if this is useful.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The free Toolkit Plugin for Jira (for Jira server, only) provides a custom field, Number of Comments, so with it you could say "Number of Comments" = 0
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.