The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

Linkedissues: destionation issues fixversion etc.

Frkn Grk
July 15, 2022

How can i get the the destination issues fixversion in a structure?

 

E.g: I have Issue-543: Now i want to find in formula column all the issues fixversion and request types, which are cloned by the issue-543.

 

Source: Issues-543

Cloned by: Issue-xyz

 

How can i access the Issues-xyz fixversion and request type?

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Jihad Sabra
July 15, 2022

WITH _format(issue) = """[${issue.key}|${issue.url}] ${issue.fixversions}""":
issuelinks
.FILTER($.type = 'Cloners' AND $.destination = this)
.MAP(_format($.source))

 

The above wiki markup column formula would give you all the issues cloned by the issue alongside their fixversion.

Frkn Grk
July 15, 2022

thank you very much, To be honest, I don't unterstand your syntax.

Why are you declaring a variable? Why are """?  Why the URL?

 

I thought i could use your code and change it to solve my exact problem. I couldnt :(

I actually need all Issues which have the below (see picture) link to the destination in the following format:

 

linktype to destination, destinations issue key, fix version, "request type"

image.png

Thank you very much!!!