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

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!!!

Suggest an answer

Log in or Sign up to answer