I am trying to use group by clause in my query as,
select actor_id
from stream
where source_id = me()
group by actor_id limit 15.
But I am getting parser error at the group by. How should we use group by in FQL? Is there any work around for it?
|
I am trying to use group by clause in my query as,
But I am getting parser error at the group by. How should we use group by in FQL? Is there any work around for it? |
||||
|
|
|
Where is no
You'll need to iterate over results manually to do grouping. |
|||
|
|
|
Try Using this method..
|
||||
|
|