I've followed the tutorial at http://docs.syncano.io/docs/angularjs but it only shows how to list class data from syncano.
syncano.class('CLASS').dataobject().list()
.then(function (res) {
$scope.items = res.objects;
})
.catch(function (err) {
console.log(err);
$scope.error = err;
})
I've searched on how to add data as well. The only way that looks possible is using the api reference. Can anyone point me toward the right direction to accomplish this. And also for updating and deleting.