In my Firebase DB I store cars and their keys are generated using childByAutoId
. For example:
{
“cars”: {
"-JRHTHaIs-jNPLXOQivY": {
…
},
"-JRHTHaKuITFIhnj02kE": {
…
}
}
}
I am using GeoFire
to query cars based on geographic location. Each location (created by GeoFire
) use the same auto id as the key. After initial location query I want to retrieve information about the cars that the location query returned. Is there any way to specify a set of ids/values so I can get all data in one request instead of requisition one by one?