Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 21:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.