So right now I have two classes. A User class, and a UserUpdates class. the UserUpdates class is used to handle friendRequests, and friends, and what not. I have a field in my UserUpdates class called friendsArray, I want to have a field in my User class called friendsArray as well, that will just point to the UserUpdates friendsArray so I dont have to do a seperate query.
So in summary, what I want to accomplish is have a field in my User class, that updates automatically or points to the friendsArray in the other class (UserUpdates)
The friendsArray is simply an array of strings which are usernames
How can I accomplish this using parse's api?