I'm currently using

select time from comment
where object_id in
 (select comments_fbid from link_stat where url ='http://www.example.com/post/')
ORDER BY time DESC

to discover how many comments there are for this post (I simply count the responses here). This doesn't list the number of replies, of course.

Is there an equivalent FQL query that would count comments+replies?

link|improve this question

A friend points to api.facebook.com/method/links.getStats?urls=http://… which is very useful, but unfortunately still only gives total comment numbers, not comment+replies. Any other help very much welcome. – jamescridland Jul 12 '11 at 2:21
feedback

1 Answer

up vote 1 down vote accepted

Try this:

select time from comment where 
object_id in 
  (select comments_fbid from link_stat where url ='http://www.example.com/post/') 
or object_id in 
  (select post_fbid from comment where object_id in (select comments_fbid from link_stat where url ='http://www.example.com/post/'))
link|improve this answer
Thank you. I discovered exactly this mechanism. – jamescridland Oct 29 '11 at 10:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.