BlinkDB Logo blinkDB

remove()

Removes a given entity from the table.

// Remove Alice from the table
await remove(userTable, { id: "alice-uuid" });
ParameterDescription
tableThe table created by createTable() .
itemThe item (or primary keys of an item) which gets removed from the table.

Consider removeMany() if you want to remove many items in parallel.