Subquery in Elastic Search

Can we use output of one query as input to another query?
Can you perform a subquery similar to sql?

For ex:

SELECT column-names
FROM table-name1
WHERE value IN (SELECT column-name
FROM table-name2
WHERE condition)

No you can't.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.