Skip to content

Commit 24b10c6

Browse files
committed
[TASK] Update documentation
1 parent 9402833 commit 24b10c6

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,9 @@ search underneath the current site node (like in the example above).
172172
Furthermore, the following operators are supported:
173173

174174
* `nodeType("Your.Node:Type")`
175-
* `exactMatch(key, value)`; supports simple types: `exactMatch('tag', 'foo')`, or node references: `exactMatch('author', authorNode)`
175+
* `exactMatch('propertyName', value)`; supports simple types: `exactMatch('tag', 'foo')`, or node references: `exactMatch('author', authorNode)`
176+
* `greaterThan('propertyName', value)` -- range filter with property values greater than the given value
177+
* `lessThan('propertyName', value)` -- range filter with property values less than the given value
176178
* `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.
177179
* `limit(5)` -- only return five results. If not specified, the default limit by ElasticSearch applies (which is at 10 by default)
178180
* `from(5)` -- return the results starting from the 6th one
@@ -347,4 +349,4 @@ In order to understand what's going on, the following commands are helpful:
347349

348350
* use `./flow nodeindex:showMapping` to show the currently defined ElasticSearch Mapping
349351
* 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.
352+
* the logfile `Data/Logs/ElasticSearch.log` contains loads of helpful information.

0 commit comments

Comments
 (0)