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, I am trying to write a JQL that returns all the bugs in a list of epics. I have created a query that returns these epics. filter = "my epics".
I build my query like this
issuetype = Bug and "Epic Link" in (filter = "my epics") and I get
"Error in the JQL Query: ...."
If I use the epic issuekey instead of the filter, I get results.
example: issuetype = Bug and "Epic Link" in (projectA-1, projectA-2) returns all the bugs in these 2 epics.
I also have the scriptrunner but do not know how to use it for this scenario.
Can I get some help please?
Hello @Nari Man
You need to use the issuesInEpics() function.
issueType = Bug and issuefunction issuesInEpics(<filter>)
I know that if you replace <filter> with the JQL that you used to select your Epics, and put that JQL in quotes, then the above should work.
I don't have a Jira Server/Data Center instance where I can test this out, so I don't know if you can replace <filter> with "filter = 'my epics'".
the issue was with the quotes around "my epics". I typed the query from scratch and it worked.
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi
You can use epic link in JQL. like epic link = " Test" and issuetype = bug.
this will list out all the child issues for the epic and whose issue type is Bug
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.