(ns: MongoDBCollectionNamespace, filter: Document, options: DeleteOptions)
| 100 | |
| 101 | export class DeleteOneOperation extends DeleteOperation { |
| 102 | constructor(ns: MongoDBCollectionNamespace, filter: Document, options: DeleteOptions) { |
| 103 | super(ns, [makeDeleteStatement(filter, { ...options, limit: 1 })], options); |
| 104 | } |
| 105 | |
| 106 | override handleOk( |
| 107 | response: InstanceType<typeof this.SERVER_COMMAND_RESPONSE_TYPE> |
nothing calls this directly
no test coverage detected