how to make a query to find the number of likes got to the users comments
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.
|
|
It has to be based on an object, such as a feed post, event, etc. Once you know what kind of object you want to get comments on, you can do:
You can't query with out a subquery in the where() that joins on an indexable column, such as, object_id. It's how Facebook forces you to join to their index tables, to narrow results (and prevent you from doing full scan queries like "select *"). The problem is, you have to pick a kind of object to look at. For example, if you want comments on the posts the user made:
You can play around with various conditions on the indexible columns (marked by *). Test it in: |
|||
|
|