Hi
I have gone through
https://lucene.apache.org/solr/guide/8_5/searching-nested-documents.html and
examples suggest to search on a field either on parent or child based on
parsers.
Is there a way to search on the combined text of parent and child documents? 

Assume below is the document I am indexing to Solr. 
Is there a way I can search as a "blue t-shirt" and retrieve the id:3
document and fetch the remaining siblings?
and similarly, on the search of "brown t-shirt", id:4 document should be
returned with remaining siblings.


{
  id: 1
  product : "Awesome T-Shirt",
  _child_documents:
    {
       id: 2
       color : "Red",
       size : "L",
    },
   {
      id: 3
      color : "Blue",
      size : "M",
   },
   {
      id: 4
      color : "brown",
      size : "XL",
   }
}




--
Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Reply via email to