I know one can add a trigger to all the documents of a particular collection like
functions.firestore.document('Subscriber/{userID}').onCreate((snap, context)
But I have multiple collections like Subscriber1, Subscriber2, Subscriber3 and so on. Is there a way to write a trigger when any change happens to any collection which starts with Subscriber. Something like
functions.firestore.document('Subscriber**/{userID}').onCreate((snap, context)