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
works perfect
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.