I am new to Firebase. The following is my database's structure.
{
"dvdStores": {
"store1": {
"movies": {
"0": "Don't Look Up",
"1": "Top Gun"
}
},
"store2": {
"movies": {
"0": "Jungle Book",
"1": "Taken"
}
},
"store3": {
"movies": {
"0": "The Matrix",
"1": "Home Alone"
}
},
"store4": {
"movies": {
"0": "The Lion King"
}
}
}
}
Can I get all the movies corresponding to multiple keys in a single query? I would e.g. want to get all the movies corresponding to keys store1 and store4. Can this be done in a single query?
Thanks in advance :)