Open michael2043 opened 8 years ago
I want to remove data by filter like below
db.xxx.query().filter(function(){ return xxxxx;//condition }).remove();
how can I use ?
Use modify (optionally with filter before it): https://github.com/aaronpowell/db.js#atomic-updates
modify
filter
I want to remove data by filter like below
db.xxx.query().filter(function(){ return xxxxx;//condition }).remove();
how can I use ?