Created
July 6, 2019 09:34
-
-
Save shangyilim/ebc68a22d06fc210c8b37e2f904f5740 to your computer and use it in GitHub Desktop.
This file contains 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
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