You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*`greaterThan('propertyName', value)` -- range filter with property values greater than the given value
177
+
*`greaterThanOrEqual('propertyName', value)` -- range filter with property values greater than or equal to the given value
178
+
*`lessThan('propertyName', value)` -- range filter with property values less than the given value
179
+
*`lessThanOrEqual('propertyName', value)` -- range filter with property values less than or equal to the given value
176
180
*`sortAsc('propertyName')` and `sortDesc('propertyName')` -- can also be used multiple times, e.g. `sortAsc('tag').sortDesc(`date')` will first sort by tag ascending, and then by date descending.
177
181
*`limit(5)` -- only return five results. If not specified, the default limit by ElasticSearch applies (which is at 10 by default)
178
182
*`from(5)` -- return the results starting from the 6th one
@@ -347,4 +351,4 @@ In order to understand what's going on, the following commands are helpful:
347
351
348
352
* use `./flow nodeindex:showMapping` to show the currently defined ElasticSearch Mapping
349
353
* use the `.log()` statement inside queries to dump them to the ElasticSearch Log
350
-
* the logfile `Data/Logs/ElasticSearch.log` contains loads of helpful information.
354
+
* the logfile `Data/Logs/ElasticSearch.log` contains loads of helpful information.
0 commit comments