Filter Syntax for "Blocked" and "Blocker" Issues

Scott Lawson November 21, 2017

Hi,

 

I am trying to create a quick filter for all issues that are either blocked or are blockers. Can you advise syntax please. Thanks heaps!

2 answers

1 vote
Daniel Turczanski - __JQL Search Extensions
Marketplace Partner
Marketplace Partners provide apps and integrations available on the Atlassian Marketplace that extend the power of Atlassian products.
November 23, 2017

Hi, you can use Jql Search Extensions

 

In cloud:

linkType = "is blocked by" or linkType = "blocks"

Server:

issue in linkType("is blocked by") or issue in linkType("blocks")

1 vote
Suhas P
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 21, 2017

Hi, you need to use Script Runner plugin JQL function. 

issueFunction in hasLinks("blocks") OR issueFunction in hasLinks("is blocked by")

 

https://jamieechlin.atlassian.net/wiki/pages/viewpage.action?pageId=57999378#ScriptedJQLFunctions-IssueLinks

Suggest an answer

Log in or Sign up to answer