tags:

views:

5

answers:

0

I have a query which is meant to track new comments on a facebook page.

I've simplified the query in this case, so let's say we have this which should in theory return all comments for all posts in a page (right?):

"SELECT fromid, text, time FROM comment WHERE post_id IN (SELECT post_id FROM stream WHERE source_id='{$page_id}')"

When I retrieve the results, most of them seem to appear. But, there is specifically one (possibly more) comments I know are missing.

I've used my personal fb account to post on this page's wall, the page's creator has replied to my post (which shows up) and then my reply within the same wall post does not appear.

Why is this? Is there anything specific I am missing?

Thanks!