Can you perform a subquery in Elastic Search?

I am finding a list of documents (usually about 5-20 documents). For each of the documents I'd like to perform a search to come up with some custom fields for them.

Each document is a property, and, I want to analyze surrounding properties for each property found in order to evaluate the average price of properties around it.

Thanks

link|improve this question

29% accept rate
Perhaps there is a way to use nesting for this? – David Kullmann Jan 10 at 18:56
1  
No, you can't use sub-queries. Whether nested will fork for you or not depends on exactly what you're trying to achieve. Perhaps expand the question with some example data? – DrTech Jan 20 at 16:35
feedback

1 Answer

No, Elastic Search doesn't support subqueries.

You should be able to do this with an IDs query:
http://www.elasticsearch.org/guide/reference/query-dsl/ids-query.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.