What is the ElasticSearch equivalent for an SQL subquery?

Elasticsearch doesn’t support subqueries; you would need to perform your first query, then construct a second query using the results of the first query as an input.

Leave a Comment