I have some issue with a Facebook's fql request :).
When I request like this
SELECT uid, profile_url FROM user where contains('potatoe') OR uid in(select id from profile where contains ('potatoe')) ORDER BY mutual_friend_count desc LIMIT 0,2
I have always the same results, even if I change the offset...
But
- If I change DESC to ASC the "offset" works...
- If I change OR to AND and let the order by desc => the "offset" works too!
Something is wrong with my OR/desc/offset combo? Or I just have misunderstood something with "or" operators? :/
Thanks a lot.