Status
Tech review

Style guide




Short description

Returns the name of the issue type with the given id.

Output

Available since




This function returns the name of the issue type with the given id.


issueType(id) #Output: Text



Parser expressionDescription


issueType(10000)


This example returns a text with the corresponding name of the issue type with the id 10000.



Parameters used in this function

ParameterInput (data type)Description
id

A valid issue type id.



This function returns a .

If there is no issue type with the given id, the function returns .


You might want to use this function for several parser expression where you are e.g. checking against the current issue type. So even if you rename the issue type afterwards, the parser expression still works and won't break.

Imagine an expression like this:

%{issue.type} = issueType(10000)