You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi Everyone
I'm trying to create a view of all epics in our project with the stories linked to them. How do I do this in Jql?
Thanks
Hi Kashiefa.
you can do something like this :
"Epic Link" in (KEY-1) AND issuetype = story AND project = ABC
Of course, if you want several epics, you have to add them in the parenthesis of Epic Link.
If you want to have an Epic for your project and its children here you go :
parentEpic = KEY-1
You will have to add all the epics for this.
One last can be this one :
project = PRJ and parentEpic in (KEY-1, KEY-2)...
It's a bit tricky to use these functions. To my knowledge it is not possible to automate it easily by passing a filter to parentEpic.
Hi @Kashiefa Solomon -- Welcome to the Atlassian Community!
To add onto what @Flavien Gache suggests, if you only need to run this query once, you could:
project = myProject AND issueType = epic
KEY-1, KEY-2...
key IN (KEY-1, KEY-2...) OR parentEpic IN (KEY-1, KEY-2...)
Best regards,
Bill
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.