Re: childFilter Solr 6.6

2021-05-09 Thread David Smiley
Hi, childFilter is guaranteed to return the documents in the order it was provided to Solr. If you want to sort or do other interesting things, consider [subQuery] ~ David Smiley Apache Lucene/Solr Search Developer http://www.linkedin.com/in/davidwsmiley On Thu, Apr 29, 2021 at 3:55 PM Roopa Ra

childFilter Solr 6.6

2021-04-29 Thread Roopa Rao
Hi - I am on version Solr 6.6 and using parent and child construct Query as follows: [child parentFilter='field1:value1' childFilter='((field1:(value1)) AND ({!terms f=field2}value2))' limit=1] Here I want to sort this children by field3 and return only the top 1 element (hence limit=1) . Is the