(name, values)
| 368 | }); |
| 369 | }, |
| 370 | async create(name, values) { |
| 371 | const table = toTable(name); |
| 372 | await runCreatePolicies(table, values, context); |
| 373 | return await internal.create(table, values); |
| 374 | }, |
| 375 | async createMany(name, values) { |
| 376 | const table = toTable(name); |
| 377 | for (const value of values) { |
nothing calls this directly
no test coverage detected