Comments
Comments JQL Keywords
CommentCount
Searches for issues that have a specific number of comments.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Example:
commentCount > 2
finds issues with more than two comments.
CommentedByUser
Searches for issues that were commented on by a particular user.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Example:
commentedByUser = "Alex Johnson"
finds issues that were commented on by Alex Johnson.
CommentLastCreatedBy
Searches for issues where the last comment was made by a specific user.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Example:
commentLastCreatedBy = "Emily Davis"
finds issues whose most recent comment was made by Emily Davis.
CommentLastUpdatedBy
Searches for issues where a comment was last updated by a particular user.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Example:
commentLastUpdatedBy = "Michael Lee"
finds issues with comments last edited by Michael Lee.
CommentedOnDate
Searches for issues that were commented on a specific date.
This keyword works with date-related JQL functions:
endOfDay()
endOfMonth()
endOfWeek()
endOfYear()
lastLogin()
now()
startOfDay()
startOfMonth()
startOfWeek()
startOfYear()
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Examples:
commentedOnDate >= "2024/09/01" AND commentedOnDate < "2024/10/01"
finds issues commented on during September 2024.
commentedOnDate >= startOfWeek()
finds issues commented on since the beginning of the current week.
CommentUpdatedOnDate
Searches for issues where a comment was updated on a specific date.
This keyword works with date-related JQL functions:
endOfDay()
endOfMonth()
endOfWeek()
endOfYear()
lastLogin()
now()
startOfDay()
startOfMonth()
startOfWeek()
startOfYear()
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Examples:
commentUpdatedOnDate >= "2024/10/15" AND commentUpdatedOnDate < "2024/10/16"
finds issues with comments updated on October 15, 2024.
commentUpdatedOnDate < now()
finds issues where comments were updated before today.
CommentLastCreatedOnDate
Searches for issues where the last comment was made on a specific date.
This keyword works with date-related JQL functions:
endOfDay()
endOfMonth()
endOfWeek()
endOfYear()
lastLogin()
now()
startOfDay()
startOfMonth()
startOfWeek()
startOfYear()
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Example:
commentLastCreatedOnDate < -2d
finds issues where the last comment was made more than two days ago.
CommentLastUpdatedOnDate
Searches for issues where the last comment was updated on a specific date.
This keyword works with date-related JQL functions:
endOfDay()
endOfMonth()
endOfWeek()
endOfYear()
lastLogin()
now()
startOfDay()
startOfMonth()
startOfWeek()
startOfYear()
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Example:
commentLastUpdatedOnDate < -1w
finds issues where the last comment was updated more than one week ago.