How to find linked issue to multiple epics?

Davide Caccavo
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!
October 26, 2022

Hello,

I usually create query like this one to search -for example- all the stories linked to selected epics:

  • issuetype in (Story) AND "Epic Link" in (Dave-001)

In our project, we have epic linked to other tickets (called CONSGOV) and if i want to retrieve all the epics linked to a consgov I am using this kind fo query:

  • type = Epic AND issueFunction in linkedIssuesOf("project = CONSGOV and key in (CONSGOV-Dave)") 

Now, I would like to create a query where I find all the stories related to all the epics linked to a CONSGOV.

I could use something like: 

  • issuetype in (Story) AND "Epic Link" in (Dave-001, Dave-002, Dave-003)

But the problem is that I don't know yet all the epics related to the CONSGOV and I would like to do an automatic query that can retrieve everything even if some epic is created later.

I hope that it was clear.

Thanks a lot in advance

2 answers

1 accepted

0 votes
Answer accepted
Seifallah Bellassoued
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.
October 26, 2022

Hello @Davide Caccavo

 

Can you try this JQL ?

issuetype in (Story) AND issueFunction in linkedIssuesOf('type = Epic AND issueFunction in linkedIssuesOf("project = CONSGOV and key in (CONSGOV-Dave)")', 'is Epic of')

Regards,

Seif,

Davide Caccavo
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!
October 26, 2022

Love it! It's working. Thanks a lot!!!

Like Seifallah Bellassoued likes this
0 votes
Vinay Lodhi
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!
May 10, 2024

HI @Seifallah Bellassoued , 


I am trying a similar scenario,
where project = xyz,

There are multiple EPIC's in this project assigned to Vinay - EPIC1, EPIC2, EPIC3,...... etc

I am trying to find ALL Types of Linked Issues in ALL the above EPIC's 

 

Can you please help?
Thanks. 

Suggest an answer

Log in or Sign up to answer