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.
JQL - Filter to show all epics in your project that do not contain at least one issue. Any suggestions?
Try using the below query:
project = <Project_name> AND issuetype= Epic and issueLinkType is EMPTY
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.
Hi Amy,
There are multiple ways of doing this.
In my experience, I make use of issuefunction option, however, this will work if you have scriptrunner functionality
I can also see a similar thread already, sharing for reference, hope this helps
https://community.atlassian.com/t5/Jira-questions/Get-all-Issues-without-linked-issue/qaq-p/629810
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Welcome to the community @amy schneider ,
Regarding your query, I am afraid , you might need a third party plugin to achieve your goal.
Famous one's are
below is the example of JQL Search Extensions for Jira & repo
following query will return all epics which have no child issues.
issuesInEpicCount <1
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.