...
On this page:
|
---|
Comments JQL keywords
...
commentsCount
Find issues that have a particular number of comments.
...
Code Block |
---|
commentsCount > 0 |
...
commentedByUser
Search for issues that were commented on by a particular user.
...
Code Block |
---|
commentedByUser = "Jane Potter" |
...
commentLastCreatedBy
Search for issues that were last commented on by a particular user.
...
Code Block |
---|
commentLastCreatedBy= "admin" |
...
commentLastUpdatedBy
Search for issues with a comment last updated by a particular user.
...
Code Block |
---|
commentLastUpdatedBy= "admin" |
...
commentedOnDate
Search for issues that were commented on a particular date. This keyword works with date-related JQL functions:
...
Code Block |
---|
commentedOnDate >= "2016/03/13" AND commentedOnDate < "2016/03/15" commentedOnDate < now() |
...
commentUpdatedOnDate
Search for issues in which a comment was updated on a particular date. This keyword works with date-related JQL functions.
...
Code Block |
---|
commentUpdatedOnDate >= "2016/03/13" AND commentUpdatedOnDate < "2016/03/15" commentUpdatedOnDate < now() |
...
commentLastCreatedOnDate
Search for issues that were last commented on a particular date. This keyword works with date-related JQL functions.
...
Code Block |
---|
commentLastCreatedOnDate < -2d |
...
commentLastUpdatedOnDate
Search for issues with comments updated on a particular date. This keyword works with date-related JQL functions.
...