If you want to find issues that are blocked by a specific issue, you can use this function:
issue in linkedIssues("BLAH-1", "is blocked by")
If you need to find issues that are blocked by ANY issue, you can use this function:
issueLinkType in ("is blocked by")
If you want to learn more about JQL functions that come out of the box with Jira, I would recommend that you check out this article by "The Jira Guy": https://thejiraguy.com/2021/11/03/more-jql-functions/
I hope this helps!
Hello @Mirela Todorova ,
Following JQL query should set you in the right direction:
issueLinkType = "is blocked by" and issueFunction in linkedIssuesOf("issueKey = <issue key>")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
or
issueFunction in hasLinks("is blocked by")
if you want all tickets that are blocked, not only blocked by on specific ticket
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Note: This only works when you have Scriptrunner installed.
If you are doing it in Cloud, you need to be running it in the enhanced search as well.
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.