I have a fql query:
{"e426262700718049":"SELECT name, start_time, location, creator, pic_square FROM event WHERE eid=426262700718049","c426262700718049":"SELECT name FROM profile WHERE id IN (SELECT creator FROM #e426262700718049)"}
In the Graph Api Explorer it works totally fine, but the sdk just return empty array. With different queries it works totally fine.
That's how I implemented it:
public function mquery($queries)
{
$params = array(
'method' => 'fql.multiquery',
'queries' => $queries
);
return $this->getFb()->api($params);
}
Any idea? :)