Hi,
I am trying to find the list of 15 distinct friends who posted on my wall and I use this query,
SELECT actor_id FROM stream WHERE source_id = me() limit 15.
I want distinct 10 friend's id but the result contains repetitive value too, as a result I am not getting distinct 10 friend ids.
As i understand I cannot use unique in FQL. How could I solve this?
