我有这个查询:
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 是否可以进行 ^ 排序?