If two separate users have the same PFObject locally and user1
saves the object first then user2
calls to save it next(like below), will the array only contain user2
objectId or both objectIds?
[object addUniqueObject:[[PFUser currentUser]objectId] forKey:@"invite"];
[object saveInBackground];
And if it only contains user2
id is the only way to make sure the object saves properly is to fetch it right before I save it?