The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

I would like to know how to create a filter for all the dependencies that solve my Epics

Baig Mirja_ Sattar
March 19, 2021

I would like to know how to create a filter for all the dependencies that solve my Epics. The result should show those "Stories" that has dependent issue to a group of Epic Issues which I specify.

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Bill Sheboy
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 Champions.
March 19, 2021

Hi @Baig Mirja_ Sattar 

What do you mean by "dependent issue"?

If you mean stories which are children of the set of epics, you could find them by supplying the epic keys:

"Epic Link" IN (EPIC-1, EPIC-2, EPIC-3)

If instead you mean find any stories (including their linked stories) which are children of the set of epics, you cannot do that with out-of-the-box Jira.  You would need one of the marketplace add-on products for JQL to do that query.

Best regards,

Bill

Baig Mirja_ Sattar
March 25, 2021

Hi Bill,

 

How to use below filter where I can pull out Dependent Issues data from any Issue.

issueLinkType = "has dependent issue" (XYZ-123,XYZ-453) AND project = XYZ AND issuetype in (Story,Epic)

 

BR,

Sattar

Bill Sheboy
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 Champions.
March 25, 2021

Hi @Baig Mirja_ Sattar 

Thanks for clarifying; please try this to search for a specific link type and the query you note above.

( issue IN linkedIssues(XYZ-123, "has dependent issue")
OR issue IN linkedIssues(XYZ-456, "has dependent issue")
)
AND project = XYZ
AND issueType IN (Story, Epic)

For more information about that function, please look here:

https://confluence.atlassian.com/jiracoreserver/advanced-searching-functions-reference-939937722.html#Advancedsearching-functionsreference-linkedIssueslinkedIssues()

Baig Mirja_ Sattar
March 28, 2021

Thankyou

Like Bill Sheboy likes this
Bill Sheboy
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 Champions.
March 29, 2021

You are welcome, @Baig Mirja_ Sattar If this helped you solve the problem, please consider marking this question as answered.  That will help others in the community searching for answers find them faster.  Thanks!