This is how I envisage my DB layout. I tried using project bucket that did not work. The whole idea is any user should be able to browse the request or the donation they have made with one click. Suppose user1 wants to see the requests made then the app should go in RequestDB/User1/ and dump all the requests made. Single level nestle works I could not create multiple levels. The question is can we have a Tag: RequestDB/User1/Req1. If so kindly show how one can create such nestled DB layout and how one can read it back. Thanks
FirebaseDB1
RequestDB:
User1:
Req1: "[..................................]"
Req2: "[..................................]"
Req3: "[..................................]"
....................................
User2:
Req1: "[..................................]"
Req2: "[..................................]"
Req3: "[..................................]"
....................................
......................................................
DonorDB:
User1:
Don1: "[..................................]"
Don2: "[..................................]"
Don3: "[..................................]"
....................................
User2:
Don1: "[..................................]"
Don2: "[..................................]"
Don3: "[..................................]"
....................................
......................................................
UserDB
User1: "[..................................]"
User2: "[..................................]"
User3: "[..................................]"
......................................................