I want to assign to a const
the name value inside parent
exports.myFunction = functions.database.ref('/messages/{pushId}/likes')
.onWrite(event => {
const name = event.parent.data.val().name; // this doesn't work. how do I properly get the name which is located in /messages/{pushId} ?
});
According to the documentation, this is how you access data from another path: