Hi I'm trying to get the ones that are shared between two friends, and I use this query:
SELECT source_id, target_id FROM connection
WHERE source_id = me()
AND source_id IN
(SELECT uid2 FROM friend WHERE uid1 =me())
AND target_type = 'page'
which should get pages that the user and his friends like, however I get an empty array in the results. What is wrong with the request?
source
share