You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
For the below image is it possible to access the issue field of links (i.e. this issue "duplicates" Issue "XY-1234") through scriptrunner / behaviors.
How would one access for this link the "This issue" ,"Issue", or "Comment" field?
I tried searching everywhere but haven't found what I was expecting.
Thanks in advance.
Hello Randy.
If I'm not mistaken, that information is kept in "linkedIssues" through the IssueLinkManager. In this post, you will find some more info about it. I'm attaching the answer from Jamie Echlin in that very post:
for (IssueLink issueLink : issueLinkManager.getOutwardLinks(issue.getId())) { if (issueLink.getIssueLinkType().name == "Blocks") { return issueLink.destinationObject.getCustomFieldValue(...) } }
Hope this helps!
Cheers
DYelamos
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.