Removes multiple entities from the table.
// Remove Alice, Bob & Charlie from the table
await removeMany(userTable, [
{ id: "alice-uuid" },
{ id: "bob-uuid" },
{ id: "charlie-uuid" }
]);
Parameter | Description |
---|---|
table
|
The table created by createTable() .
|
items
| The items (or primary keys of an item) which get removed from the table. |