Skip to content

Instantly share code, notes, and snippets.

@shangyilim
Created July 6, 2019 09:34
Show Gist options
  • Save shangyilim/ebc68a22d06fc210c8b37e2f904f5740 to your computer and use it in GitHub Desktop.
Save shangyilim/ebc68a22d06fc210c8b37e2f904f5740 to your computer and use it in GitHub Desktop.
const functions = require('firebase-functions');
exports.calculateOrder = functions.firestore
.document("orders/{orderId}")
.onWrite(async (change, context) => {
console.log('begin trigger');
return change.after.ref.update({
orderUpdated: true
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment