FQL query to get the Immediate family (name, birthday and relationship)
问题 I trying to get my immediate family data from facebook using FQL. I run this statement: SELECT first_name, middle_name, last_name, birthday_date from user where uid IN (SELECT uid FROM family WHERE profile_id = me() and (relationship = 'brother' or relationship = 'sister' or relationship = 'father' or relationship = 'mother' or relationship = 'son' or relationship = 'daughter' or relationship = 'wife' or relationship = 'husband')) But I want to have also the relatioship in the data. It gives