user341879
user341879

Reputation: 87

fql result count

how to find fql result count?

Upvotes: 3

Views: 10079

Answers (2)

Hernan Veiras
Hernan Veiras

Reputation: 166

I think it's a decision taken by design. It would be potentially very expensive to allow COUNT over huge tables like Facebook ones. I've seen they have tables to store specific counts so you can query them already calculated.

Upvotes: 2

David M
David M

Reputation: 72870

FQL doesn't support a COUNT function. Get the results, and just enumerate them.

See here: http://blogs.x2line.com/al/archive/2007/10/07/3287.aspx

Upvotes: 12

Related Questions