Let's say we're building a blog using Parse.com's javscript sdk where users can follow eachother and have a feed.
The 'Follow' class includes a pointer to the followee & follower. While the 'Post' class includes a pointer the creator (followee^).
if I now want to fetch all rows inside 'Post' where the creator equals followee and the user equals follower inside the 'Follow' class; then sort them using descending("createdAt"), how would one do that (efficiently)?
I have checked the api reference and there doesn't appear to be a straightforward answer to this issue: https://www.parse.com/docs/js/api/classes/Parse.Query.html
Any help is gladly welcome. Thanks.