Comment JQL functions Cloud
Â
: available in Issue Navigator.
commentedByMe()
Search for issues that the current user has commented on it.
Examples
issue in commentedByMe("JQL")
finds the issues that the current user has commented on.
Â
commentedByMeAfter()
Search for issues that the current user has commented on it in a specific time range.
Examples
issue in commentedByMeAfter("JQL", "-3d")
finds issues with comments from the current user within dates from the number of days you specify to the present.
Â
commentedByMeBefore()
Search for issues that any user commented on before the given day.
Examples
issue in commentedByMeBefore("JQL", "-3d")
finds issues with comments from the current user before three weeks.
Â
commentedByUser()
Search for issues that any user has a comment on it.
Examples
Â
commentedByUserAfter()
Search for issues that the current user has commented on it in a specific time range.
Examples
finds issues with comments from the user within dates from the number of days you specify to the present.
Â
commentedByUserBefore()
Search for issues that any user commented on before the given day.
Examples
finds issues with comments from the user before two days.
Â
commentCountEquals()
Search for issues according to comment count.
Examples
finds issues with two comments.
Â
commentCountMoreThan()
Search for issues according to comment count.
Examples
finds issues with more than two comments.
Â
commentCountLessThan()
Search for issues according to comment count.
Examples
finds issues with less than two comments.
Â
commentedDate()
Search for issues according to the comment date.
Examples
finds issues commented on the specific date given.
Â
Â
Â