Referring to the examples in
https://backendless.com/documentation/data/ios/data_relations_save_update.htm
Say, I have 2 tables USERS and JOBS
USERS has many JOBS and has a relationship setup in the USERS table to have one-to-many relationship
The USERS table field myjobs points to JOB table
I am able to use iOS SDK to create a new JOB for a particular user using something like:
let user = backendless.userService.currentUser
let myNewJob :Jobs = jobs()
// populate Jobs
user.setProperty(“cases”, object: myNewJob)
var error: Fault?
let result = backendless.data.save(user, error: &error) as? Users
if error == nil {
print(“User Job have been saved: (result)”)
}
else {
print(“Server reported an error: (error)”)
}
I want to obtain the objectID of the new Job created but the RESULT returned is NIL.
What am I doing wrong here?