Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Jira ALM Structure - fixVersions from an array

Niklas Radestock
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
September 5, 2023

hey Guys, 

 

got the following problem: 

Want to create an array with fixVersions from linkedIssues. I`m already at the point, where I got an array with all the issues in it. But I cant array the fixVersions from multiple linked Issues. The column is blank then. 

Here my code: 

issueLinks.MAP(IF($.type = 'requires' AND $.destination = this AND $.source.issueType = "Topic", $.source))

If I add  [.fixVersions], it wont result like I expect to do. Can anyone give me hint or even a solution for that? 

1 answer

1 vote
Stepan Kholodov _Tempo_
Community Champion
September 5, 2023

Hello @Niklas Radestock 

If the formula already works to return the issuekeys of linked issues, then you can try a formula like this:

issueLinks.filter($.type = 'requires' AND $.destination = this AND $.source.issuetype = "topic").source.versions

Best regards,
Stepan Kholodov
Tempo

Suggest an answer

Log in or Sign up to answer