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.


usersWhoTransitioned(fromStatus, toStatus) #Output: Text list



Parser expressionDescription


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:



Parameters used in this function

ParameterInput (data type)Description
fromStatus

Text containing a valid status name.
toStatus

Text containing a valid status name.



This function returns a




Variant where you additionally define a specific issue key.


usersWhoTransitioned(fromStatus, toStatus, issueKey) #Output: Text list



Parser expressionDescription


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:



Parameters used in this function

ParameterInput (data type)Description
fromStatus

Text containing a valid status name.
toStatus

Text containing a valid status name.
issueKey

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



This function returns a



Use cases and examples



Parser function cloud
Map(error)
NotesNot possible to get the user who transition an issue.






Status
Tech review

Style guide




Short description

Returns the names of the users who executed a certain transition.

Output

Available since

Label