私はこのクエリを持っています:
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() )
必要に応じて結果が得られます。つまり、特定の場所の友達のみが表示されます。代わりに Graph API を使用して同じ結果を得ることができますか? 私は場所IDを持っていると仮定します。グラフAPIでこれを試しました:
me/friends?location.id='111501225536407'&fields=location
^ グラフ API を使用して可能なことはありますか?