...
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:
...