(table, v)
| 443 | return values.map((value) => ({ _id: value[idField] })); |
| 444 | }, |
| 445 | async deleteMany(table, v) { |
| 446 | const where = v.where ? buildWhere(v.where) : undefined; |
| 447 | |
| 448 | await db.collection(table.names.mongodb).deleteMany(where, { session }); |
| 449 | }, |
| 450 | async transaction(run) { |
| 451 | const child = client.startSession(); |
| 452 |
nothing calls this directly
no test coverage detected