(table, v)
| 275 | ); |
| 276 | }, |
| 277 | async updateMany(table, v) { |
| 278 | await init; |
| 279 | const model = getPrismaModel(table); |
| 280 | const where = v.where ? buildWhere(v.where) : undefined; |
| 281 | |
| 282 | await model.updateMany({ where, data: v.set }); |
| 283 | }, |
| 284 | async create(table, values) { |
| 285 | await init; |
| 286 | if (relationMode === "prisma") { |
nothing calls this directly
no test coverage detected