MCPcopy
hub / github.com/mongodb/node-mongodb-native / min

Method min

src/cursor/find_cursor.ts:218–222  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

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

Callers 2

readBufferedDocumentsFunction · 0.45
kmsRequestMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected