* Set the cursor min * * @param min - Specify a $min value to specify the inclusive lower bound for a specific index in order to constrain the results of find(). The $min specifies the lower bound for all keys of a specific index in order.
(min: Document)
| 216 | * @param min - Specify a $min value to specify the inclusive lower bound for a specific index in order to constrain the results of find(). The $min specifies the lower bound for all keys of a specific index in order. |
| 217 | */ |
| 218 | min(min: Document): this { |
| 219 | this.throwIfInitialized(); |
| 220 | this.findOptions.min = min; |
| 221 | return this; |
| 222 | } |
| 223 | |
| 224 | /** |
| 225 | * Set the cursor max |
no outgoing calls
no test coverage detected