We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc6e6eb commit 1a9c5d6Copy full SHA for 1a9c5d6
modules/elasticsearch/src/main/java/org/elasticsearch/index/query/json/RangeJsonFilterParser.java
@@ -100,6 +100,13 @@ public class RangeJsonFilterParser extends AbstractIndexComponent implements Jso
100
} else {
101
includeUpper = token == JsonToken.VALUE_TRUE;
102
}
103
+ } else if ("gt".equals(currentFieldName)) {
104
+ if (jp.getCurrentToken() == JsonToken.VALUE_NULL) {
105
+ from = null;
106
+ } else {
107
+ from = jp.getText();
108
+ }
109
+ includeLower = false;
110
} else if ("gte".equals(currentFieldName)) {
111
if (jp.getCurrentToken() == JsonToken.VALUE_NULL) {
112
from = null;
0 commit comments