loopbackjs - Remote method for updating all records -
i try make custom endpoint, adds bonus all employee. , retorns employee records, endpoint. /employees/bonus
as understand; should make remote method this:
common/models/employee.js
employee.bonus = function(cb){ // logic comes here cb(null,"") } employee.remotemethod( 'bonus',{} )
this makes endpoint, how can request employees, loop them through , increase salary property?
query employee model, apply filter if need, loop through results.
employee.find( filter, function(err,employees) { if(err){ console.log(err); } employees.foreach( function(employee){ fnincsalary(employee.salary); //do employee instance } ); } );
Comments
Post a Comment