前提・実現したいこと
ドキュメントが作成、更新された時にusersのサブコレクションpostsがCloud functionsでルートのpostsコレクションにコピーされるようにしました。
しかし、作成時にはCloud functions(.onCreate)がトリガーされず、更新時にのみ(.onUpdate)トリガーされます。
deployでエラーは出ていないので、コーディングの問題かと思います。
原因が明確にわからないのでお力添えをお願いいたします。
該当のソースコード
Javascript
1"use strict"; 2 3const functions = require("firebase-functions"); 4const admin = require("firebase-admin"); 5const firestore = admin.firestore(); 6 7module.exports = functions 8.region("asia-northeast1") 9.firestore.document("/users/{userId}/posts/{postId}") 10.onCreate(async (snapshot, context) => { 11 await copyToRootWithUsersPostsnapshot(snapshot, context); 12}); 13module.exports = functions 14.region("asia-northeast1") 15.firestore.document("/users/{userId}/posts/{postId}") 16.onUpdate(async (change, context) => { 17 await copyToRootWithUsersPostsnapshot(change.after, context); 18}); 19 20async function copyToRootWithUsersPostsnapshot(snapshot, context) { 21 const postId = snapshot.id; 22 const userId = context.params.userId; 23 const post = snapshot.data(); 24 post.authorRef = firestore.collection("users").doc(userId); 25 await firestore.collection("posts").doc(postId).set(post, { merge: true }); 26}
補足情報
Cloud functions側のトリガーも
document.update
のみになっています。
回答1件
あなたの回答
tips
プレビュー