I'm looking for a return value like this:
[ {"name": Tom Foolery,
[
"message": "another typhoon brewing..one after the other",
"message": "Oooooh Yeah!"
]},
{"name": John Dweely,
[
"message": "up and atom",
"message": "pints tonight?"
]}
]
Edit: I modified the return value in response to a comment of clarity
The best I could come up with so far is:
select message, uid from status where uid in
(select uid2 from friend where uid1 = me())
Any ideas and how I can get FQL to turn the UID into the name? Bonus points if there's a way to do this with the Graph API.
Much appreciated!