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.
Is it possible to write nested JQL queries without using any third party plugin?
Logic:
output1 = selectedIssues(JQL);
for (o in output1){
output2 = selectedIssues(JQL2 + o.user)
result + = output2
}
Output of the first JQL will be used an input for the second JQL.
Hi Shyam,
Depending of your use case you can simply benefit from the AND native operator to retrieve the desired data. For some other cases you must go for a third-party app instead. Using i.e. JQL Booster Pack you can passes a subquery to a bunch of the methods, for example:
References:
Hope this information helps you to create awesome queries <3
Kind regards
Hi Shyam,
Nested JQL is not supported out of the box in Jira.
An alternative to using an app like JQL Search Extensions that support subqueries, is to manually create the results:
Even with additional apps your use case might be hard to satisfy. Can you explain a bit more what is your exact use case and what business requirement does it need to satisfy?
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.