I doing the following query in the FB-FQL:
SELECT id, tagged_uids, type, coords FROM location_post WHERE distance(latitude, longitude, '37.785834', '-122.406417') < 1000 AND app_id=364316083653078 LIMIT 0, 100
This returns a result with two entries.
But when I increase the distance, I get less results??? (only 1)
SELECT id, tagged_uids, type, coords FROM location_post WHERE distance(latitude, longitude, '37.785834', '-122.406417') < 10000 AND app_id=364316083653078 LIMIT 0, 100
As I understand it, the first query should give me the posts within a range of 1000 meters and the second one within 10'000 meters. So I should get MORE results with the second query?
Any ideas?
pagingurls returned by the query? – Donn Lee Oct 28 '12 at 23:57