getIssueList()

This function returns the values stored in an issue list variable, which was previously created using the setIssueList() function.


Bash
getIssueList(variableName) #Output: Issue list


Examples

Expression parser

Description

Bash
getIssueList("myIssueList")

This example returns the values stored in the variable named "myIssueList", e.g.:

["KEY-1", "KEY-2"]

Additional information

Parameters used in this function

Parameter

Input (data type)

Description

variableName

text

The name of the stored variable.

Output

This function returns an issue list

To return the value you must have created the variable before, using the setIssueList() function within the same expression.


📚 Use cases and examples