* A low level cursor API providing basic driver functionality: * - ClientSession management * - ReadPreference for server selection * - Running getMores automatically when a local batch is exhausted * * @param command - The command that will start a cursor on the server. * @param o
(command: Document, options?: RunCursorCommandOptions)
| 616 | * @param options - Configurations for running the command, bson options will apply to getMores |
| 617 | */ |
| 618 | runCursorCommand(command: Document, options?: RunCursorCommandOptions): RunCommandCursor { |
| 619 | return new RunCommandCursor(this, command, options); |
| 620 | } |
| 621 | } |
no outgoing calls
no test coverage detected