从Firebase Functions获取带有update()的更新数据

时间:2019-03-05 21:03:16

标签: firebase google-cloud-firestore algolia

我想在更新Firestore后获取新更新的数据。

eventRef.update({
                    snippet: admin.firestore.FieldValue.arrayUnion(object)
                }).then(res => {
                    console.log("Success");

                    // Proceed to update the Algolia object
                    return updateAlgoliaObject({
                        snippet: ???,
                        objectID: ID
                    });

如何获取新近更新的数据,以便可以使用它并更新Algolia中的对象?

0 个答案:

没有答案