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.
Solved! Go to Solution.
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