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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.