I'm having a very simple setup with _User entity having a likes Relation with itself (reflective).
A common use case is list users. I'm listing very few users (ex: 15), but i would also like to display the amount of likes he has.
Following standard suggested technique from Parse.com that would require a query for each of the 15 _User(s).
I don't think this is acceptable, maybe 2 queries are enough:
- first one getting the first 15
_User(s) - second one getting the amount of
likeseach of the_Userhaves
But I have no idea if that's even possible with Parse API, so I'm asking for help ;)