Jira expression
issue?.closedSprints?.map(s => s.name)
Closed sprints are stored in lists. Documentation on how to work with lists can be found here.
You can access the whole link by issue?.closedSprints[0] which returns an Issue object, issue?.closedSprints will return a list of objects.
Read
|
Returned value |
The list of names of all past sprints the issue belonged to. If the issue is no Epic, null is returned. |
|---|---|
|
Output data type |
text list |
|
Example output |
Start, MVP |