Yes, I think you can also do the same thing phillee answered with the Graph API instead of FQL:
- Get user's photos
https://graph.facebook.com/USERID/photos
- Get each photo's tags
https://graph.facebook.com/PHOTOID/tags
- Sort through the list of photo tags, and grab all photos with the Friend in them
- Get each photo's comments
https://graph.facebook.com/PHOTOID/comments
- Sort through the list of photo comments, and grab all comments left by the friend
- As the other answer also said: rinse and repeat for all data you want
https://graph.facebook.com/USERID/feed
https://graph.facebook.com/USERID/posts
- etc etc, see all connections here:
http://developers.facebook.com/docs/reference/api/user/
For the interests, movies, activities, etc just make an API call for both (https://graph.facebook.com/ONEUSER/music and https://graph.facebook.com/OTHERUSER/music) and find the intersection of the two sets of data (loop through each list and save all matches to a separate list of mutual Likes)
There are no specific API calls for friendships though, so you will have to build your own. My guess is that Facebook is doing exactly this on their Friendship pages :)
It should be just as easy with FQL as with the REST API... maybe even easier with FQL since you can add WHERE conditions and get back just the data you need (SELECT * FROM comments WHERE fromid = FRIENDID), instead of sorting through the big list returned by the API (unless there is a way to add conditions to API request URLs?).