What would be the fql query for getting friends who has got certain application installed and has accepted given perrmisions and are girls ?
here is my query so far:
$fql = "SELECT uid, name, pic_square, sex FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me())";
$response = $facebook->api(array(
'method' => 'fql.query',
'query' =>$fql,
));
$this->_helper->json($response);
Thanks You for any help
