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?
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.