I would like to execute a FQL to retrieve all app user's friends.
In previous versions of the sdk it could be done with:
var client = new FacebookWebClient();
client.Query(String.Format("SELECT uid, name FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = {0})", me.id));
but with the version 6.0.10 I have no clue how can I do the same.
Any ideas?