Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How do I retrieve a list of features that depend on others?

Filipe Pomar
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
September 27, 2021

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? 

1 answer

1 accepted

1 vote
Answer accepted
Suvarna Gaikwad
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 27, 2021

@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

Filipe Pomar
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
September 30, 2021

That works, thanks!

Like Suvarna Gaikwad likes this

Suggest an answer

Log in or Sign up to answer