Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

2 Answers

Where is no GROUP BY clause support in FQL:

FQL can handle simple math, basic boolean operators, AND or NOT logical operators, and ORDER BY and LIMIT clauses.

You'll need to iterate over results manually to do grouping.

share|improve this answer

Try Using this method..

  def group_by(h, col_name)
    vals = h.map {|hash| hash[col_name]}.uniq
    vals.collect {|val| h.map {|ha| ha  if (ha[col_name] == val)}.compact}.uniq
  end
share|improve this answer
He asked about Facebook FQL – Asaf Nevo Jan 17 at 18:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.