Hi, I am trying to retrieve a specific row from a table, make a few changes and update the changes. Looking for a solution in Javascript. The code I have currently is:
var dataQuery = new Backendless.DataQuery();
dataQuery.condition = "ID = 'S1234567A'";
var accounts = Backendless.Persistence.of(Accounts).find(dataQuery);
Lets say i want to change the fields Name and Email and update them, how would I go about doing that, I’ve been looking through everywhere and cannot find a solution, please help! Thanks.
Yes, there is not exactly the same example as in your case.
But there is an example of how to update a recently saved object in the last code snippet.
Anyway, I glad that I helped you.
Have fun.