I am trying to fetch the friends of the user (Who is logged in into his facebook account) based upon the gender of his friends and based upon the pic_big!=NULL (Every friend should have a big profile picture) .
Below is my code that I am writing.
NSString *queryString = [NSString stringWithFormat:@"%@%@%@%@%@%@%i%@%@",
@"SELECT name, pic_big, sex, uid FROM user ",
@"WHERE sex=", @"male", @" AND ",
@"pic_big != 'null' AND uid IN (SELECT uid2 ",
@"FROM friend WHERE uid ", loggedInID, @" )",
@"ORDER BY name"];
NSMutableDictionary *dictionary=[NSMutableDictionary
dictionaryWithObjectsAndKeys:queryString,@"query", nil];
[FBRequest getRequestWithParams:dictionary
httpMethod:@"GET"
delegate:self
requestURL:@"fql.query"];
loggedINiD is user' login Id. I am not getting any response in the delegate methods. I am sure I need to recheck this sql query. Any suggestions please.