moleculer-db v0.2.0
icebob
released this
06 Jul 14:16
·
307 commits
to master
since this release
Breaking changes
Renamed service methods
findAll
renamed tofind
update
renamed toupdateMany
remove
renamed toremoveMany
clear
action is removed
We removed the clear
action from service The reason is if you don't filter it in whitelists of API gw, it will be published and callable from client-side what is very dangerous.
After all if you need it:
module.exports = {
name: "posts",
mixins: [DbService],
actions: {
clear(ctx) {
return this.clear(ctx);
}
}
}
Renamed adapter methods
findAll
renamed tofind
update
renamed toupdateMany
remove
renamed toremoveMany