Created
October 25, 2017 13:33
-
-
Save DennisAlund/d84a9d2bcc2c5cf9ed478fee83cfaeee to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export const createMovieReviewAggregate = functions.firestore.document("movies/{movieId}").onCreate(event => { | |
| return admin.database().ref("movieRevies").child(event.params.movieId).set({ | |
| numReviews: 0, | |
| totalReviewScore: 0, | |
| averageScore: 0 | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment