Status
Tech review

Style guide




Short description

Returns a number or text list with values of the given field from the given issues.

Output





This function returns a number list with values of the given field from the given issues.


fieldValue(numberField, issueList) #Output: Number list



Parser expressionDescription


fieldValue({issue.dueDate}, subtasks())


This example returns a number list of the sub-tasks' Due Dates.




Parameters used in this function

ParameterInput (data type)Description
numberField

Any field code representing a number field or a selectable field.
issueList

Any given issue list. Usually this value is retrieved from a function (e.g. linkedIssues() or subtasks()).



This function returns a .

If the issue list is empty or there are no values for the field in the given issue list, the function returns an empty .




Variant for text fields.


fieldValue(textField, issueList) #Output: Text list



Parser expressionDescription


fieldValue(%{issue.reporter}, subtasks()) 


This example returns the text list of the sub-tasks' reporters.



Parameters used in this function

ParameterInput (data type)Description
textField

Any field code representing a text field or a selectable field.
issueList

Any given issue list. Usually this value is retrieved from a function (e.g. linkedIssues() or subtasks()).



This function returns a .

If the issue list is empty or there are no values for the field in the given issue list, the function returns an empty .