how to write a JQL for find all issues that have linked issues (linked issue type let say "story") and these linked issues are assigned to me.
Hi Nuwan,
You need Scriptrunner for this; with it you can use a neat JQL function:
issueFunction in linkedIssuesOf("issuetype = story and assignee = currentUser()")
With SQL for JIRA:
issue in sql(" select * from issues i1 inner join issues i2 on i2.id=i1.parentid where i1.JQL='issuetype = story and assignee = currentUser()' ")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.