Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Issue Updates JQL keywords

...

updatedByUsersCount

Search for issues that were updated by a particular number of users. 

...

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(tick)

(tick)

(error)

(error)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error) 

Example:

Find issues updated by more than 5 users. 

Code Block
updatedByUsersCount > 5

...

updatedBy

Search for issues that were updated by a particular user/users. 

...

Code Block
updatedBy in ("helen", "daniel")

...

transitionedBy

Search for issues that were transitioned by a particular user/users. 

...

Code Block
transitionedBy in ("daniel", "helen")

...

loggedTimeBy

Search for issues on which particular users reported time. 

...

Code Block
loggedTimeBy in ("daniel", "helen")

...

updatedOnDates

Search for issues that were updated on a particular date. This keyword works with date-related JQL functions:

...

Code Block
updatedOnDates>="2020/06/01" AND updatedOnDates<"2020/06/02" 
updatedOnDates < now()

...

lastUpdatedBy

Search for issues that were last updated by a particular user. 

...

Code Block
lastUpdatedBy="admin"

...

movedProjects

Search for issues that were moved between projects. 

...

Note

Due to a Jira system limitation, it is impossible to build a command that supports searching from/to. The query will find all issues that were in SEARCH or DATA at some point. 

...

movedProjectsCount

Search for issues that were moved between a number of projects. 

...