I have the following (simplified) solr scheme:
<schema name="documents" version="1.1"> <uniqueKey>id</uniqueKey> ... <fields> <field name="id" type="string" indexed="true" stored="true" required="true"/> <field name="documentReferences" type="string" indexed="true" stored="false" multiValued="true" required="false"/> </fields> </schema>
The values ββthat will be in this documentReferences field are all ids other documents that are indexed in this core solr.
The search I want to perform (in English):
Documents who id is not in any other document documentReferences field
Is it possible? I have no problem indexing another field if this helps answer this question.
source share