我可以获取从 Firestore 集合组查询中获取的文档的路径或引用吗?

时间:2021-03-23 09:55:34

标签: javascript typescript firebase google-cloud-firestore

所以我想执行这样的集合组查询,以获取收件箱中所有过期的消息文档

const oneMonthAgo = moment().subtract(1, "month").toDate();

db.collectionGroup("inbox")
.where("createdAt", "<", oneMonthAgo)
.get();

inbox 实际上是 users 集合中的一个子集合,所以路径会是这样的:

users/{userID}/inbox/{messageID}

在使用上面的集合组查询代码获取所有过期消息后,我需要删除所有这些过期消息。要删除消息文档,我需要知道文档的路径/引用

我可以从消息文档的字段中获取 messageID。但我不知道用户 ID,所以我不知道删除该消息的完整路径/参考

users/ ?????? /inbox/{messageID}

那么我可以从上面的集合组查询代码的结果中获取用户ID吗?因为我需要使用此代码删除消息文档

db.doc(`users/${??????}/inbox/${messageID}`).delete()

上面的代码将返回 FirebaseFirestore.DocumentData 的承诺。我需要获取我从集合组查询中获取的文档的路径或引用。

我可以这样做吗?

1 个答案:

答案 0 :(得分:0)

给定一个消息文档,您可以通过沿着其引用的 parent 链向上确定用户:

const messages = await db.collectionGroup("inbox")
  .where("createdAt", "<", oneMonthAgo)
  .get();
messages.forEach((messageSnapshot) => {
  const messageRef = messageSnapshot.ref;
  const inboxRef = messageRef.parent;
  const userRef = inboxRef.parent;
  console.log(userRef.id); // logs the id of the user document this message is for
});

另见How to return parent collection based on subcollection document value in Firestore?