I'm trying to create an FQL query that returns all users who appear together with the current user in all public photos. Here is what I'm having so far:
select uid from user where uid in (
select subject from photo_tag where pid in (
select pid from photo where pid in (
select pid from photo_tag where subject=me()
)
)
) and uid in (
select uid2 from friend where uid1=me()
)
This works, but I would like to also get the number of times these users show up in the photos alongside the current user. In theory, the following query should work:
select subject from photo_tag where pid in (
select pid from photo where pid in (
select pid from photo_tag where subject=me()
)
) and subject in (
select uid2 from friend where uid1=me()
)
But it always returns an empty dataset. Could I get some advice on where I'm going wrong so I can fix this?