[Solved] How to update nested Firebase value?

I’m wondering how to update a nested Firebase value without the Realtime_DB component.

For example, how would I set the value of game data–>Players–>Guest–>Name below? I know how to create that object but… do I just create the object all over again when I want to update the value?

Screen Shot 2020-12-03 at 11.47.32 PM

This is what I had in mind but it won’t work for obvious reasons:

1 Like

I have a feeling this might be the answer:

You need to address it with the “/” notation instead of object structure. Game ID/Players/Guest/Score=00

@muneer Okay, I see that. I thought this would work but it doesn’t change the value:

1 Like

Ah, I had to include the top level directory (the variable name itself):

Thanks for your help!

1 Like