# Thunkable X Firebase Get Parent Nodes to the List

**URL:** https://community.thunkable.com/t/thunkable-x-firebase-get-parent-nodes-to-the-list/563414
**Category:** Questions about Thunkable X
**Created:** [April 15, 2020, 8:24am UTC](https://community.thunkable.com/t/thunkable-x-firebase-get-parent-nodes-to-the-list/563414 "2020-04-15T08:24:04Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![TheGenius](https://avatars.discourse-cdn.com/v4/letter/t/cc9497/32.png) [@TheGenius](https://community.thunkable.com/u/TheGenius)
#### Post date: [April 15, 2020, 8:24am UTC](https://community.thunkable.com/t/thunkable-x-firebase-get-parent-nodes-to-the-list/563414/1 "2020-04-15T08:24:04Z")

</div>

I am struggling to get the data from firebase and display it in the list.

 ![Annotation 2020-04-15 131340](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/d/d/ddfb5e49a6b73f7e9c45f7bccc42ea957044a7b7.png)

I am selecting a date “Apr 1, 2020” to get the tag “Test” and “Test One” into the list or label.

But at any cost, I am not being able to get it.

Also, there is no enough documentation available to understand “OBJECTS”

![Annotation 2020-04-15 131615](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/a/9/a9a0c01ccd163f49f3d8e6c730ce796a4d394e80.png)

 ![Annotation 2020-04-15 133752](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/f/2/f25ee08d84c8d0c79cc955b79ec1358633f5f2c9.png)  
I can not get the value of name with this. But If I change the key to the following, I get the value.

 ![Annotation1 2020-04-15 140849](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/2/d/2df7b5e64097fd610d713a036bbba3d23c0f9964.png)

But I want to set the key to “Test” dynamically from the list. And for that, I need to retrieve the “Test” and “Test One” from the firebase in the list or label.

Please Help!

---

<div class="post-metadata">

### Author: ![samclever](https://avatars.discourse-cdn.com/v4/letter/s/ec9cab/32.png) [@samclever](https://community.thunkable.com/u/samclever)
#### Post date: [April 16, 2020, 12:59am UTC](https://community.thunkable.com/t/thunkable-x-firebase-get-parent-nodes-to-the-list/563414/2 "2020-04-16T00:59:48Z")

</div>

On the “getProperty” block, dont use the “getObjectfromJSON” block, just put the value in the “of object”. the “get property” name is the parent node youre calling and the value will return all the data within that parent node. if you want to refine each parent then you would make the name “Apr 1,2020/test” and the value would be all of the information within the Test node. then you could parse that data into a list OR you can go even further and do “Apr 1,2020/Test/add” for the name and that will return the value of “Tehsbsjs”

---

<div class="post-metadata">

### Author: ![manyone](https://avatars.discourse-cdn.com/v4/letter/m/ee59a6/32.png) [@manyone](https://community.thunkable.com/u/manyone)
#### Post date: [April 16, 2020, 4:03am UTC](https://community.thunkable.com/t/thunkable-x-firebase-get-parent-nodes-to-the-list/563414/3 "2020-04-16T04:03:46Z")

</div>

i had the same requirement (a little simpler though).  
below is my firebase structure and what this demo app displays:

 ![fb_db2_5](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/0/6/0648305e564ec9983bed70727868cc1e15090df2.jpeg)  
the first listviewer comes from **getKeys** while the 2nd listviewer comes from **getColumn** (similar to the airtable command for getting the values of a column into a list). the slider is just used for selecting either one of my two columns.

here’s a copy of the demo project (with the apikey and db url blanked out)  
[https://x.thunkable.com/copy/86880af83d0740ac2907b82089c2a5b5](https://x.thunkable.com/copy/86880af83d0740ac2907b82089c2a5b5)

here are the blocks

 ![fb_db3](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/d/9/d9245ef755d44fb3f33263e2062415b574ede295.jpeg)  
here is the **getKeys** routine -which returns a list of the keys in the order they are stored in the database. (for this demo, the listviewer1 is used to show the list but it may not be needed in your app).  
 ![fb_db4](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/4/f/4f0ef7cdd3fd9fabdaa5525ad7d4ab78e32df277.jpeg)  
below is the **getColumn** routine that returns all the values in the specified column - as a list! (just like in airtable)  
 ![fb_db5](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/8/c/8c4953ea657fbecb6807e65c4fe673f5662f2071.jpeg)

---

<div class="post-metadata">

### Author: ![ealalin13s68](https://avatars.discourse-cdn.com/v4/letter/e/e5b9ba/32.png) [@ealalin13s68](https://community.thunkable.com/u/ealalin13s68)
#### Post date: [October 3, 2020, 10:21am UTC](https://community.thunkable.com/t/thunkable-x-firebase-get-parent-nodes-to-the-list/563414/4 "2020-10-03T10:21:18Z")

</div>

I have a similar structure:  
Firebase

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/a/6/a66f9847c084084a1b7c362dca8fb224122c4057.png)  
I have the parent tag in firebase: Manger ; Meeting…;tst 3 Oct  
I can get into Thunkable the children Tag:Date;Document;Info;Name  
Thunkable  
 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/9/a/9ab980690eb9024aa1c3da9bee43dd5f100c3513.png)

Can you give me more info about how you get the Firebase Parent info into Thunkable ?

---

<div class="post-metadata">

### Author: ![ealalin13s68](https://avatars.discourse-cdn.com/v4/letter/e/e5b9ba/32.png) [@ealalin13s68](https://community.thunkable.com/u/ealalin13s68)
#### Post date: [October 3, 2020, 11:07am UTC](https://community.thunkable.com/t/thunkable-x-firebase-get-parent-nodes-to-the-list/563414/5 "2020-10-03T11:07:33Z")

</div>

> [@ealalin13s68](#):
>
> Can you give me more info about how you get the Firebase Parent info into Thunkable ?

Can you give me more info about how you get the Firebase Parent TAG info into Thunkable ?

---

<div class="post-metadata">

### Author: ![ioannis](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/ioannis/32/146956_2.png) [@ioannis](https://community.thunkable.com/u/ioannis)
#### Post date: [November 8, 2024, 11:39am UTC](https://community.thunkable.com/t/thunkable-x-firebase-get-parent-nodes-to-the-list/563414/6 "2024-11-08T11:39:00Z")

</div>


