Firebase Cloud Function - Create user with extra information
问题 I am currently looking for the best way to create a user with additional information in a cloud function. The obvious possibility seems to create a trigger which creates a user document: functions.auth.user().onCreate((user) => { /* Create user document in firestore with base information*/ }); And afterwards add the information to the created document. (Handle the promise) But one way or another I don't feel really satisfied with this solution. I would rather do all this stuff in one go. Does