I need to configure my solr engine is such way that I can elevate and skip some documents always, so I was referring to this document, however not sure whether this is supported or not. e.g. Can we specify the "text" attribute of element like following sample elevate.xml?
<elevate>
<query text="*:*">
<doc id="A" />
<doc id="B" />
</query>
<query text="partialQueryText*">
<doc id="A" />
<doc id="B" exclude="true" />
</query>
</elevate>
Any idea?