|
The Id field is not mapped as a NumericField, still the QueryBuilder DSL will automatically convert a query targeting the "id" field into a NumericRangeQuery.
This should only be done if the field is mapped as @NumericField, otherwise a normal keyword based query should be generated.
The workaround is to map the field using @NumericField
|