В последнем iOS SDK метод, упомянутый Бертраном, не существует.Теперь вы должны сделать это следующим образом:
NSString *query = [NSString stringWithFormat:@"YOUR_QUERY_HERE"]; //begins from SELECT........
NSMutableDictionary * params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
query, @"q",
nil];
FBRequest *request = [FBRequest requestWithGraphPath:@"/fql" parameters:params HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
//do your stuff
}];
//or you can do it also with the following class method:
[FBRequestConnection startWithGraphPath:@"/fql" parameters:params HTTPMethod:@"GET" completionHandler:^(FBRequestConnection *connection,
id result,
NSError *error) {
//do your stuff
}];
Источник: https://developers.facebook.com/docs/howtos/run-fql-queries-ios-sdk/