I am trying to get all posts near specific location. I post some statuces and photos on my FB page with location. In Graph API Explorer I run this query:
SELECT id, coords, type, page_id, timestamp FROM location_post WHERE author_uid = me()
and it results in right way, but when I add:
SELECT id, coords, type, page_id, timestamp FROM location_post WHERE author_uid = me() AND distance(latitude, longitude, '47', '122') < 10000
then all results cleared.
I tried to get distance in query and it results in nice numbers like 33 or 454. So why distance function in WHERE section results in nothing?
Also request from example:
SELECT id, page_id
FROM location_post
WHERE distance(latitude, longitude, '37.86564', '-122.25061') < 10000
does't show anything.