Skip to content

Commit

Permalink
Explicitly document how to query over a range
Browse files Browse the repository at this point in the history
  • Loading branch information
tomblench committed Feb 20, 2014
1 parent 30f1700 commit aade614
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions doc/index-querying.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,9 @@ The queries currently supported are:
* `lessThanOrEqual(value)`: index <= value
* `equalTo(value)`: index == value
* `greaterThanOrEqual(value)`: index >= value
* `greaterThanOrEqual(value1).lessThanOrEqual(value2)`: value1 <= index <= value2
* `oneOf([value_0,...,value_n])`: index == value_0 || ... || index == value_n

Additionally lessThanOrEqual and greaterThanOrEqual can be combined to form a range.

### Query options

It is possible to specify additional options with the `QueryBuilder` class.
Expand Down

0 comments on commit aade614

Please sign in to comment.