I have this query:
SELECT uid, name, current_location FROM user WHERE uid IN ( SELECT uid2 FROM friend WHERE uid1 = me() ) AND current_location.id IN (Select current_location.id from user where uid = me() ) It gives me results as required i-e friends only with a particular location. Can i get the same results using Graph API instead? assuming I have the location id. I tried this in graph API:
me/friends?location.id='111501225536407'&fields=location Is something of ^ sort even possible using graph API?