Hi,
We're using Jira 7.x and I'd like to create 2 Swimlanes in my Kanban able to show the following issues:
1) Issues in any project, having label "X" AND potentially having linked issues to it (issues that are blocking) that are not closed (So basically the top issue is blocked until the linked issues are unblocked/done). Of course, it could also be possible that the top issue has no linked issues … so must be shown too.
2) Basically the opposite. Issues I can work on
I tried with stuffs like (issueFunction in linkedIssuesOf("status not in (Resolved,Closed)") AND issueFunction in hasLinkType(Blocks)), but can't succeed to have a consistent answer.
If somebody can do magic with JQL, feel free to help :)
Thx in advance.
Regards;
You are using issueFunction in your JQL. I assume you have installed the Scriptrunner add-on?
If so, this query would do the job:
Swimlane "Blocked Items":
issueFunction in linkedIssuesOf('resolution is empty', 'blocks')
Swimlane "Not Blocked"
-> just leave it empty
I suggest using a quick filter for the labels.
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.