Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 FQL 完全陌生,但每天都使用 FB JS API。
是否有一种简单的方法可以进行两个 FQL 查询,一个用于获取家庭成员,另一个用于获取该结果的女性用户?
我可以看到 FQL Multiquery 已被弃用,但您仍然可以这样做吗?
是的,您可以使用user和family表来运行查询,例如 -
SELECT uid, username FROM user where sex = 'female' and uid in ( select uid FROM family WHERE profile_id = me())