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.
How can i fetch all the stories and sub task's Epic link to filter "Filter1")
Below JQL doesn't work
issuetype in (Story, Sub-task) AND ( "Epic Link" in (filter = "Filter1" ))
"Epic Link" in ('') expects issue keys, e.g. "Epic Link" in ('KEY-2', 'KEY-5')
Filters do not return issue keys so this will never work in JQL. You would need more "sophisticated" functions such as 'issueFunction in linkedIssuesOf('project= EPICPROJ', 'is Epic of')'
Such functions are specifically tailored to find you linked issues of an Epic based on a "subquery". (Above example is from ScriptRunner plugin out of box JQL function).
Consider using the ParentEpic JQL function if you have a specific list of epics....
parentEpic = test-40
returns...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I tried parentEpic and I get an error message that this doesn't exist, can you help me with this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Katharina , it could be that you are working with a Team managed project. In which case you can simply use Parent. Feel free to share a sr of your JQL and error if you need further assistance.
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.