我有这样的结构:
A (collection): {a (doc): {B (collection): {b (doc)}}}
我需要从所有“ a”中获取“ b”。
我不需要它们之间的关系,我只需要所有的“ b”。
我正在使用Java的Android Studio中工作。
答案 0 :(得分:1)
要获取子集合中的所有文档,只需使用您知道的集合和文档的名称构建到它的路径,然后使用get()
到fetch the results,just like any other Query:< / p>
Query q = firestore.collection("A").document("a").collection("B");
q.get() // add listeners for the results