Issue Updates JQL Keywords
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.
MovedProjects
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:
movedProjects in ("ALPHA", "BETA")
finds issues that were moved from or to the ALPHA or BETA projects.