This function returns the names of the users who transitioned the current issue from a given status to another given status, ordered by ascending transition time.

An empty text as an argument is interpreted as any status.

Syntax
usersWhoTransitioned(fromStatus, toStatus) #Output: Text list
Examples
Parser expressionDescription
Syntax
last(usersWhoTransitioned("Open", "In Progress"))

This example returns the name of the user who was the last to execute the transition "Start Progress", e.g.:

admin.istrator

To achieve this the following functions are used:

Additional information

Parameters used in this function

ParameterInput (data type)Description
fromStatus

TEXT

Text containing a valid status name.
toStatus

TEXT

Text containing a valid status name.
Output

This function returns a TEXT LIST


Variant where you additionally define a specific issue key.
Syntax
usersWhoTransitioned(fromStatus, toStatus, issueKey) #Output: Text list
Examples
Parser expressionDescription
Syntax
count(usersWhoTransitioned("Open", "In Progress", %{parent.key}))

This example returns the number of times the transition "Start Progress" has been executed in the parent issue, e.g.

4

To achieve this the following functions are used:

Additional information

Parameters used in this function

ParameterInput (data type)Description
fromStatus

TEXT

Text containing a valid status name.
toStatus

TEXT

Text containing a valid status name.
issueKey

TEXT

Text containing a valid issue key. Usually field codes are used.
Output

This function returns a TEXT LIST


Use cases and examples