This is my query for getting the post
NSString *fqlquery= @"SELECT post_id,message FROM stream WHERE source_id = '100005146987508' limit 10000";
self.newurl=[NSString stringWithFormat:@"https://graph.facebook.com/fql?q=%@ &access_token=%@",fqlquery,appDelegate.session.accessToken];
it returns
{
"data": [
]
}
It seems we are not getting all the results back. Are we doing anything wrong?