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 want to filter friends of the current user by their age. Is this possible using FQL? If so, what would the query look like?

-- EDIT --

An example of the kind of filtering im looking at is:

Find all friends between the age of 20-30

share|improve this question

1 Answer

up vote 0 down vote accepted

This will list your friends along with their birthdays. You can simply modify it to display pages fans:

fql?q=SELECT uid, birthday_date FROM user where uid IN (select uid2 from friend WHERE uid1=me() ) order by birthday_date DESC
share|improve this answer
But can I perform filtering like say, only friends who are 18-30 years old? – zsquare Jul 13 '12 at 6:26

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.