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
0 commit comments