* Ping the MongoDB server and retrieve results * * @param options - Optional settings for the command
(options?: CommandOperationOptions)
| 118 | * @param options - Optional settings for the command |
| 119 | */ |
| 120 | async ping(options?: CommandOperationOptions): Promise<Document> { |
| 121 | return await this.command({ ping: 1 }, options); |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * Remove a user from a database |
no test coverage detected