For reference, here is a question on SO that I asked recently that is relevant to this question:How to model Friendship relationships
I\'ve been looking for a way to know the date two users became friends. I\'ve found this question but it only explains how to simulate the friendship page with multiple FQL queries.
I am using the FB graph api to get a list of my friends\' friends using: https://graph.facebook.com/<id>/friends?access_token=<token>
I have friendship model, and for every new friendship, I create two new records: User1 and Friend1 Friend1 and User1
I\'m creating a little social network in Rails, where people can add eachother as a friend. I have created a model called \'user\', which contains, e-mail, strong md5 hash with salt of password etc.