Jira expression field code

issue?.versions[0]?.description
issue?.fixVersions[0]?.description

Example outputSwitching to React Frontend
Output data type

Type

Available since
issue?.versions[0].description
issue?.fixVersions[0].description

Versions are stored in lists. Documentation on how to work with lists can be found here.

You can access the whole version by issue?.versions[0] and issue?.fixVersions[0] which returns a Version object, issue?.versions (and issue?.fixVersions) will return a list of objects.

Read


Returned valueThe first (fix)version's description
Output data type

Example outputSwitching to React Frontend