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.