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.
I have a lot of issue tickets,
1 some of them, I created the link with another one by "child of"
2 some of them, I did not create any link
and I want to search part 2 by JQL
Hi @Samantha Du ,
As you're on Jira Cloud, the correct answer is to get an app that provides JQL extensions you're looking for.
With standard JQL, you can only get a list of issues and export them to Excel for further processing. This works if you want to do a one-off analysis. If your use case is more dynamic, look beyond standard Jira.
Standard JQL doesn't easily allow it, but you can quickly find the results using our professional indexing service JQL Search Extensions
If you want to search for all the Epics that don’t have children, you can use this query:
issue in epicsOfChildrenInQuery ("project = ’TestProject’")
TestProject is the name of your project that contains the issues.
After this, you save it, in “save the query as a filter”
Then, you access the “Advanced issue search”, in Jira and use this query:
filter != “FilternName” and type = epic
FilterName is the name of your saved filter.
Could you please confirm if this is what you are looking for?
If not, could you give me more information to help you?
Check out the documentation for more examples.
I hope this helps!
Maurício
You can’t do that OOTB. you might consider Scriptrunner
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can’t do that OOTB. With Scriptrunner you could use type in standardissuetypes()
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.