{
"lambeosaurus": {
"height" : 2.1,
"length" : 12.5,
"weight": 5000
},
"stegosaurus": {
"height" : 4,
"length" : 9,
"weight" : 2500
}
"pegosaurus": {
"height" : 4,
"length" : 9,
"weight" : 1000
}
}
I want to select stegosaurus and pegosaurus from my parent node. It is similar like in query where we provide comma separated values in the query. e.g
select * from my_table where id in ('stegosaurus','pegosaurus');
I have read the documentation of firebase and no help. Any suggestion will be very helpfull.