Dear Jira Community,
As the title states, I am looking for a JQL query that shows all issues that are in (any type of) relation to issues that are assigned to me. Already tried different approaches but failed. Happy, if you could help me out :)
Kind regards
Chris
Hi,
The built-in JQL function linkedIssues(issueKey) does not allow the flexibility that you want to achieve here.
If you have Scriptrunner in your Jira instance, you can get it using this JQL function:
linkedIssuesOf(Subquery, [link name...])
So, for your case the JQL would be like this:
issueFunction in linkedIssuesOf("assignee= xxxxxx")
Thank you for your help @Barnali Putatunda
I'll try to get this running with Jira PowerScripts instead of Scriptrunner.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.