PHP Code:
var entity = {scope:"Call", id:"12a4c6b8ff8ad5c"};
var model = ??????; // what do I put here ?
some js code uses something like the following, but I do not understand if/where the id is passed
PHP Code:
this.getModelFactory().create(entity.scope, function (model) {
// ....
});
I think I need to trigger the GET api call for that entity somehow
Comment