Skip to end of banner
Go to start of banner

Comment JQL functions Cloud

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

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

issue in commentedByUser("JQL", "Full Name")

 

commentedByUserAfter()

Search for issues that the current user has commented on it in a specific time range.

Examples

issue in commentedByUserAfter("JQL", "username", "-5d")

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

issue in commentedByUserBefore("JQL", "username", "-2d")

finds issues with comments from the user before two days.

commentCountEquals()

Search for issues according to comment count.

Examples

issue in commentCountEquals("JQL", "2")

finds issues with two comments.

commentCountMoreThan()

Search for issues according to comment count.

Examples

issue in commentCountMoreThan("JQL", "2")

finds issues with more than two comments.

commentCountLessThan()

Search for issues according to comment count.

Examples

issue in commentCountLessThan("JQL", "2")

finds issues with less than two comments.

commentedDate()

Search for issues according to the comment date.

Examples

issue in commentedDate("JQL", "2023-06-12")

finds issues commented on the specific date given.

  • No labels