I have an app that has a Parse "User". The user is an Admin of sorts. Underneath the admin we have a "regular user". These regular users do not sign up through Parse, but are just ParseObjects that are tied to other data via "parenting".
They are connected to the Admin user via regularUser.put("user",ParseUser.getCurrentUser());
An admin can click a "Share" button to share this regularUser and all their accompanying data with another Admin user.
My problem is I don't know the best way to do this. How can I make a regular user belong to one or more Users?
I'm not sure when its best to tie data to a user vs. adding an object to a "Parent" vs a ParseRelation (which i still don't quite understand).
I come from an SQL background with primary/foreign keys and I don't see a direct comparison between SQL and Parse relationships. Help me figure this out please.
