facebook - fql OR and order by desc with offset -
I have some problems with facebook's fql request :).
When I request this way
SELECT uid, profile_url where user selects '(' potatoe ') or ID (profile identity id where' (potatoe ')) Order LIMIT 0,2 by mutual_friend_count <
- If I change the dexc to "offset" ASC, then I always get the same result, even if I offset Change ...
Works ...
- If I change or else and in its order desc = & gt; "Offset" also works!
Something wrong with me or / drd / offset combo? Or is there some misunderstanding with me "or" operator? : /
Thank you very much.
You should write your FQL query like that
SELECT uid
LIMIT 0,2, where the UID is selected (select UID from the user where 'Potato'))
The FQL could not interpret the result of "included" in the Boolean expression, so your Or operator failed here ...
Comments
Post a Comment