Is it allowed to have multiple onWrite triggers on the same firestore collection? I already have one onWrite event in my cloud functions:
exports.modifyUser = functions.firestore.document('users/{userId}')
.onWrite((change, context) => {
...
}
Is it ok to have another one? I know I could combine it in the same trigger but my application is in production already and I really don't want to break anything by messing up the existing database trigger.