BlinkDB Logo blinkDB

removeWhere()

Removes all entities that match the given filter.

// Remove all users older than 15
await removeMany(userTable, {
  where: {
    age: { gt: 15 },
  },
});
ParameterDescription
tableThe table created by createTable() .
filterOnly items which match the filter will be removed. See filters.