答案 0 :(得分:0)
试试这个,
exports.customfunction = functions.firestore.document('Users/userID').onCreate(event =>{
// you can do here with your inserted data
const data = event.data.data(); // updated value
const previousData = event.data.previous.data(); // before updated value
//return the event once your operation ends
})