Scripted JQL Functions Error

Almaz Kidane July 12, 2017

I want to list linked issues of an issue in one of cloned/linked issues :

I have jira software project A, creates link or clone issue B project  of service desk. To display all linked issues of an issue in Project A in the linked issue of project B. I want to use issue in linkedIssueOf(), but the method linkedIssueOf is giving error i.e [Static type checking] can not find matching method.

Would you suggest me a solution to this problem?

Thanks!

 

1 answer

0 votes
Alex Christensen
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
July 12, 2017

I believe the JQL should be:

issueFunction in linkedIssuesOf("subquery goes here")

This JQL should also work if you just want to see all linked issues of a single issue:

issue in linkedIssues("issue key goes here")

The first query requires ScriptRunner, but the second one should be a default JQL option, I believe.

Suggest an answer

Log in or Sign up to answer