I have a document with a field called uuids. This field is a list (multivalued) can have up to 100k values per document.
I want to search for documents that match uuids that start with "5ff6115e" for instance. I can already do it successfully by using q=uuids:5ff6115e*
:
http://localhost:8983/solr/test1/select?q=uuids%3A5ff6115e*&rows=1&fl=uuids&wt=json&indent=true
However, the resultant document brings me all 100k values for this field.
What I want is not only filter the documents whose uuids field start with this value, but also filter the field values returned so that I will only receive specific values in the answer.
How to do that?