I playing with facebook api a bit, and theres aomething that is a bit of a problem, im using Multiquerying, to get all pages a user liked. so i make one call to get all pages a user liked, and than a nother call to get the names of the pages. I end up with 2 lists, one is page_ids and one page_names:
queries.add("SELECT uid,page_id,created_time FROM page_fan WHEREuid="+userId,"page_likes");
queries.add("SELECT name,page_url FROM page WHERE page_id IN (SELECT page_id FROM #page_likes)","pagedata");
Is there a way that instead of displaying 2 lists, ill get one list with that shows page name under his page id? something like this: "123214211"-> "coca", "123213"->"pepsi"
that would so much useful than just 2 lists, that you need to connect between them. Lets say i need to get comments of photos, so ill have one query for photos, second query for comments. But how will i know which comments fits to what photo?
Thanks ahead