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'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?

share|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

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/'))
share|improve this answer
Thank you. I discovered exactly this mechanism. – jamescridland Oct 29 '11 at 10:37

Your Answer

 
discard

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

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