Hello,
I usually create query like this one to search -for example- all the stories linked to selected epics:
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:
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:
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
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,
Love it! It's working. Thanks a lot!!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
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.