Skip to content

Instantly share code, notes, and snippets.

@DennisAlund
Created October 25, 2017 13:33
Show Gist options
  • Select an option

  • Save DennisAlund/d84a9d2bcc2c5cf9ed478fee83cfaeee to your computer and use it in GitHub Desktop.

Select an option

Save DennisAlund/d84a9d2bcc2c5cf9ed478fee83cfaeee to your computer and use it in GitHub Desktop.
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