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: 

Scriptrunner getInwardIssues method returns null

Samuel Titka
Contributor
July 29, 2014

Hello there,

I am trying to get linked Issue of one certain Issue through scriptrunner. What I get in variable inwardIssues is NULL.

List inwardIssues = ComponentAccessor.getIssueLinkManager().getLinkCollectionOverrideSecurity(issue).getInwardIssues("is Child of");

I test it on issue which is linked with another issue - relationship between them is of type "Hierarchy".

Do you have any idea what might be wrong and why getInwardIssues method returns NULL object?

This is only part of the code. Global view is to get (copy) value of the custom field of linked Issue (Parent) to this certain Issue (Child). This is not a sub-task!

Thank you!

BR
Samuel

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
Samuel Titka
Contributor
August 3, 2014

Problem solved:

List inwardIssues = ComponentAccessor.getIssueLinkManager().getLinkCollectionOverrideSecurity(issue).getInwardIssues("Hierarchy");