Can Firebase Firestore cloud functions manipulate collections?
I have two collections: Db.collection(groups) Db.collection(users) The group doc stores a map of members. Id like to fire a function which iterates over the collection, storing aggregated data from the user document (eg. Number activities last week) How to handle…