Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New FQL Multiquery in Graph API Javascript Example?

Anyone had luck with doing multiquery through javascript API or ajax?

like image 861
Ivan Mayes Avatar asked Dec 02 '22 01:12

Ivan Mayes


1 Answers

I have successfully done this, although I had a bit of trouble at first with the documentation only having a php example.

Just make sure you are attaching the queries json as the 2nd parameter in the api call rather than as a query string like in the php sample. That is:

FB.api('/fql', {q:{"query1":"SELECT uid, rsvp_status FROM event_member WHERE eid=12345678","query2":"SELECT name, url, pic FROM profile WHERE id IN (SELECT uid FROM #query1)"}}, 
function(response) {
    // handle response
});
like image 62
Karen Chiu Avatar answered Dec 06 '22 07:12

Karen Chiu