(namespace: MongoDBNamespace, command: Document, options: RunCommandOptions)
| 38 | override options: RunCommandOptions; |
| 39 | |
| 40 | constructor(namespace: MongoDBNamespace, command: Document, options: RunCommandOptions) { |
| 41 | super(options); |
| 42 | this.command = command; |
| 43 | this.options = options; |
| 44 | this.ns = namespace.withCollection('$cmd'); |
| 45 | } |
| 46 | |
| 47 | override get commandName() { |
| 48 | return 'runCommand' as const; |
nothing calls this directly
no test coverage detected