How do I get to child value #222
Unanswered
choonhongyeoh0241
asked this question in
Q&A
Replies: 1 comment 1 reply
-
First of all, I'm a little confused about your DS, as generally, these types of data are stored in an array. Like:
And for this kind of data, the approach is pretty simple:
But you are using some
I'm not sure if this type of DS has been supported till now or not. But if there is support, then this should be the way, at least I think so. But it's an excellent question, and I will put some time into it. Thanks |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Given the structure of this:
International
|_ John
|_ age: 20
|_name: John
|position: school
| Doe
|_age: 16
|_name: Doe
|_position: store
I am developing 2D game using Unity engine, and I saved my data into firebase using this structure. My question is how do I access to Doe in this example, to delete the whole node of Doe given above.
Beta Was this translation helpful? Give feedback.
All reactions