我使用以下示例创建了一个Firestore DB:
>Users (collection)
>>userID1(document)
>>>name (field) - age (field)
>>userID2(document)
>>>name (field) - age (field)
and another collection like this
>Firends(collection)
>>userID1(document)
>>>userID2 (field) - userID3 (field)
>>userID1(document)
>>>userID2 (field) - userID3 (field)
第一个问题: 如何检索获取UserID1的朋友并从用户集合中获取其姓名和年龄的查询。??
第二个问题: 要检索我使用过FirestoreRecyclerAdapter的所有用户..我可以在获取查询后使用此方法..?