Hi all, Is there a way I can perform a filter query on a field that contains a numeric range? Very much like how we can query over a date range:
https://lucene.apache.org/solr/guide/7_3/working-with-dates.html#more-daterangefield-details I'd like to index documents that have a field containing a range of integers, such as: doc 1 --> { my_field: [200 TO 250] } doc 2 --> { my_field: [240 TO 270] } And then have a query such as fq={!field f=my_field op=Contains}[210 TO 230] to return the first doc. This is possible with Dates, can I do something like this with integers? Couldn't find much online on this, if anyone can point me in the right direction that would be great! Ryan