* Get all the db statistics. * * @param options - Optional settings for the command
(options?: DbStatsOptions)
| 335 | * @param options - Optional settings for the command |
| 336 | */ |
| 337 | async stats(options?: DbStatsOptions): Promise<Document> { |
| 338 | return await executeOperation( |
| 339 | this.client, |
| 340 | new DbStatsOperation(this, resolveOptions(this, options)) |
| 341 | ); |
| 342 | } |
| 343 | |
| 344 | /** |
| 345 | * List all collections of this database with optional filter |
no test coverage detected