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.
我有以下收藏
用户
User = { name: string, facebook_friends: [{ name: String, fb_id: String }] }
清单
Listing = { title: string, owner_friends_ids: [String] }
我想按共同朋友的数量显示所有列表。是否可以通过相同的查询包含共同朋友的姓名,或者我需要使用一个查询进行排序,然后使用另一个查询来获取共同朋友的姓名?