I'm trying to Query Posts where the current User Liked the Posts.
I have 4 Posts on ACS; 2 of which the Current User has liked.
I've tried
Cloud.Posts.query({ limit:10, show_user_like: true, where: {show_user_like: true}, }, function (e) { if (e.success) { Ti.API.info('User Likes Posts: ' + JSON.stringify(e)); } else { Ti.API.info('Error: ' + e); } });Returns 0 Arrays? I was really sure that would work.
Another attempt:
Cloud.Posts.query({ limit:10, show_user_like: true, }, function (e) { if (e.success) { Ti.API.info('User Likes Posts: ' + JSON.stringify(e)); } else { Ti.API.info('Error: ' + e); } });The Doc says the code above would return the property of each Post with
show_user_like: true
if the User Liked the Post, and the ones the current User didn't liked, the property wouldn't be part of the Post if they didn't. My fear is that there could be a lot of Posts, and to pluck the ones where the property show_user_like
is an expensive process (not to mention I've limited only to 10).
Is there a way to return Just the Posts where the Current User Liked?