I want to create a query that lists all issues of type Episode in a certain project without any child issues registered.
Project = "X" AND type = Episode AND "no child issues registered".
Where X is an existing project.
What is the correct query for "no child issues registered"?
Are you using JIRA Cloud or Data Center, do you have apps such as Scriptrunner or JQL Tricks ?
Regards
I am not sure but I believe JIRA Cloud.
Scriptrunner or JQL Tricks do not ring a bell.
In the JIRA application, I use filters to create queries.
Regard
Rob
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.
I’m Maurício, a support engineer at Digital Toucan and I’m here to help you.
Unfortunately, using JQL of Jira, you’ll not be able to do it.
In the app where my team works, JQL Search Extensions for Jira, you can use this query to find all yours Episodes from Project X that have not children issues.
issue not in parentsOfIssuesInQuery("") and Project = "X" AND type = Episode
Please contact our support if you have any other questions about this query.
We’ll be happy to help you!
Best regards,
Maurício
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.