Fetching data from Firebase as list of list, Need Guidance

my firebase structure is like this

Capture

this is my got value block

Capture1

but when i get value in the the project bucket Question/ନବମ/ଇଂରାଜି/The Priceless Gift . then got value like this {"1732556823261:["f","t","p","i","y","\t"]","1732556851658":"["1","2","3","4","4","2"]"}.

but when do like this


it shows data like ["["f","t","p","i","y","t"]","["1","2","3","4","4","2"]"]. (its not a list of list)

but i want list like list of list i.e., [["f","t","p","i","y","t"],["1","2","3","4","4","2"]]

so how do i do this?

It looks like you have to transform the incoming list items through a Web1.JSONTextDecode block after they emerge from the values block.

(Unable to test)

its coming like this
[["1732556823261":"["f","t","p","i","y","\t"]"],["1732556851658":"["1","2","3","4","4","2"]"]]

i tried this


but coming ["["f","t","p","i","y","t"]","["1","2","3","4","4","2"]"] (which is not a pair of list)

The jaontextdecode has to be in an item loop.

2 Likes

Thank you so much :smiling_face_with_three_hearts: