We have been having errors with the JS API and deepSave since last Thursday
I have code like this:
``
Backendless.Data.of( "campaigns" ).deepSave( {name: someString, company: {objectId: anExistingObjectid}} )
.then( function( result ) {
doSomething(...)
})
.catch( function( error ) {
doSomethingElse(....);
});
``
Originally we were getting this error:
backendless.js:1144 Uncaught (in promise) Error: Cannot read property ‘value’ of undefined
I flagged it in Slack and the reply was: Sorry for the inconvenience. Thank you for letting us know about the issue, we already have an internal ticket for it BKNDLSS-28729. The team will be looking into it today. This issue is of the highest priority to us right now.
We don’t get that error any longer, however every deepSave still returns an error, although in some cases the object is still being created.