Last active
August 29, 2015 14:00
-
-
Save castroalves/f5cefca4a4f7329b04c0 to your computer and use it in GitHub Desktop.
FQL to Get Someone's Partner (GF, BF, Spouse, etc)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Change FRIEND_UID with the ID of your friend | |
SELECT uid, name | |
FROM user | |
WHERE uid IN ( | |
SELECT significant_other_id | |
FROM user | |
WHERE uid IN ( | |
SELECT uid2 FROM friend WHERE uid1 = me() AND uid2 = FRIEND_UID | |
) AND significant_other_id != "" | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Change FRIEND_UID with the ID of your friend