loopback-sdk-angular
loopback-sdk-angular copied to clipboard
Service for auto-generating Angular $resource services for LoopBack
The loopback angular model.$save (or Model.update for that matter) defaults to $upsert, which tries a batch update on the server, which is not allowed for just the $owner. The PUT...
Given two simple related models: user and answer, defined as follows: user.json: ``` ... "relations": { "answers": { "type": "hasMany", "model": "answer", } ... ``` and answer.json: ``` ... "relations":...
I have the next problem: First I have a method model defines like this: ``` javascript MyModel.remoteMethod ( 'sale', { description: "a model method example", accepts: [{arg: 'customerId', description: 'Customer...
# Description/Steps to reproduce Install a LB 3 application with loopback boot 3. Add a lot of models and boot scripts run `lb-ng server/server.js client/js/services/lb-services.js` # Expected result A client...