i want to select tagged users id`s with me on pictures. using fql command:
$multiQuery = '{
"my_tags":"SELECT object_id FROM photo_tag WHERE subject = me()",
"test_query" : "SELECT object_id,subject FROM photo_tag WHERE object_id IN
(SELECT object_id FROM #my_tags) ORDER BY object_id"
}';
This command returns a part of results.
I used also pid, result was another, only first 100 users returned. i cant understand, is there limit or ??
Anyone can help?