Skip to content Skip to sidebar Skip to footer

Get Specific Range Of Firebase Database Children

E.g. I have next data in my Firebase Realtime Database (my json file contains json array of some objects): I would like to get all objects starting from a specific index (position

Solution 1:

Solved :)

fireDatabaseReference.child("episodes").orderByKey().startAt("10")

Post a Comment for "Get Specific Range Of Firebase Database Children"