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!
Hi, you can use Jql Search Extensions
In cloud:
linkType =
"is blocked by"
orlinkType =
"blocks"
Server:
issue in linkType(
"is blocked by"
)
orissue in linkType(
"blocks"
)
Hi, you need to use Script Runner plugin JQL function.
issueFunction in hasLinks(
"blocks"
) OR issueFunction in hasLinks(
"is blocked by"
)
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.