in my index i have a multivalued doc field named "counter". it stores values like counter:[5, 12, 75, ...] and so on.
if i try to retrieve only docs where the min value of this field is greater than another value i cant get the expected result. i tried with the following filter query:
field(counter, min)\:[10 TO *]
this is the field type used and the field declaration in schema.xml:
<fieldType name="integer" class="solr.TrieIntField" omitNorms="true"/>
<field name="counter" type="integer" indexed="true" stored="true" docValues="true" multiValued="true"/>
there are no errors but not the expected result, unfortunately. thanks in advance.
fq={!frange l=10}field(counter,min)? Using a function query directly as a field name in a query don't work as far as I know.