Issue Updates
Issue Updates JQL Keywords
UpdatedByUsersCount
Searches for issues that were updated by a specific number of users.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
 |
Example:
updatedByUsersCount > 3
finds issues that have been updated by more than three different users.Â
UpdatedBy
Searches for issues that were updated by particular user(s).
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Example:
updatedBy in ("alice", "bob")
finds issues that were updated by Alice or Bob.Â
TransitionedBy
Searches for issues that were transitioned by specific user(s).
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Example:
transitionedBy in ("charlie", "diana")
finds issues that were transitioned by Charlie or Diana.
LoggedTimeBy
Searches for issues on which specific users have reported time.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Example:
loggedTimeBy in ("emily", "frank")
finds issues where Emily or Frank have logged time.Â
UpdatedOnDates
Searches for issues that were updated on specific dates.
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:
updatedOnDates >= "2024/11/01" AND updatedOnDates < "2024/11/02"
finds issues that were updated on November 1, 2024.
updatedOnDates >= startOfMonth() AND updatedOnDates <= endOfMonth()
finds issues updated during the current month.
LastUpdatedBy
Searches for issues that were last updated by a specific user.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Example:
lastUpdatedBy = "george"
finds issues that were last updated by George.Â
MovedProjectsTo
Searches for issues that were moved between projects.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Example:
movedProjectsTo in ("ALPHA", "BETA")
finds issues that were moved to the ALPHA or BETA projects.
MovedProjectsFrom
Searches for issues that were moved between projects.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Example:
movedProjectsFrom in ("ALPHA", "BETA")
finds issues that were moved from the ALPHA or BETA projects.