say i have a table “A” and this table is related to users table now i wanna update this “A” table from timer by fetching new records from users table and after doing some calculation with them , how i’m gonna do this ?
- Load an object from A
Make changes in the object
Save the object
so thats it like we do it normally (nothing different just because its on cloud ) right ? and i meant i have to load from user’s table then save the object on A
You’d use the API the same way whether it is on a device or in the cloud.
An object from table A would have to come from table A. If you load an object from Users, it would be an object representing a user.
Regards,
Mark
alright thanks