Get data from parent in Cloud Function?

2.1k Views Asked by At

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} ?
    });

screenshot of the situation

2

There are 2 best solutions below

7
On BEST ANSWER

According to the documentation, this is how you access data from another path:

exports.myFunction = functions.database.ref('/messages/{pushId}/likes')
.onWrite(event => {
     return event.data.ref.parent.child('name').once('value').then(snapshot => {
        const name = snapshot.val();
    });
});
0
On

after version update

event <- (change, context)

event.data <-change.after

exports.myFunction = functions.database.ref('/messages/{pushId}/likes')
.onWrite((change, context) => {
 return change.after.ref.parent.child('name').once('value').then(snapshot => {
    const name = snapshot.val();
});

});