Angularfire2 Firestore Update same field in multiple documents
问题 I have a profile table and a jobs table stored on Firebase Firestore. I am creating an Angular 5 web site. To save on network calls i added the users profile name to each job document. (Not sure if firestore has table linking). So when the user updates him name, I also have to update their job documents (not many). I can get a collection of jobs with the right user id. But i cannot figure out how to iterate through the list and update the one field without using an Observable (one time call).