I am trying to assess how many dependencies I have in my backlog.
So, I would like to find all tickets which have "linked issue" of type "is blocked by" not empty.
How do I do that?
@Filipe Pomar You may try to use below JQL to get blocker issues from backlog and add additional statuses to filter if required.
project = X AND issueLinkType = "is blocked by" AND Sprint not in (openSprints(), futureSprints()) AND status not in (Closed)
P.S. replace X with your projectname
That works, thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.