Hello,
How to view tasks that are not blocked, that is, tasks that the "blocked" tasks have ended.
In addition to this query, I would also like to see "independent" tasks (regardless of this type) in JQL?
Regards,
Eitan.
That kind of query requires the help of a third party addon like ScriptRunner, which enables advanced JQL functions like the one you need:
issueFunction in linkedIssuesOf("resolution is not EMPTY", "blocks")
Should you like to retrieve just unresolved issues blocked by resolved issues, then this query will get those issues:
resolution is EMPTY AND issueFunction in linkedIssuesOf("resolution is not EMPTY", "blocks")
Hope it helps.
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.