Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I use a fql request to find all my friends who use my application and want to see my film. I use this request :

FB.api({
    method: "fql.query",
    query: "SELECT actor_id FROM stream WHERE app_id = MYAPPID and source_id = "+friend.id+" and attachment.name = 'MYFILMNAME'"},
    function (responseFQL) {

This returns all friends ids. But i want to count the number of results, how can i do simply ? I can't use count(*) in FQL ?

Thanks !

share|improve this question
2  
you well need to count after the query. for more details: stackoverflow.com/questions/3527518/… – elyashiv Jul 31 '12 at 11:15
Thanks, but i cant see a request which works to count my queries. I did that for the moment : SELECT friend_count FROM user WHERE uid IN (SELECT source_id FROM stream WHERE source_id = me() and app_id = "+APP_ID+" and attachment.name = 'FILM') But of course its not that i want... I want the number of my friends who saw the film with the application... its a hard request.. – user1565433 Jul 31 '12 at 15:38

1 Answer

You can't use COUNT in FQL, it's not supported. Why don't you get the data and perform the count operation on your end ?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.