I use Ionic and Firebase in my project.
I need to filter users by gender and, due to there is too much data, I also have to implement pagination for ease of navigating through. I have been dealing with this problem for a long time, but still could not find a valid solution.
My database structure is:
My code is:
ref = this.afDB.database.ref('Users').orderByChild('Gender').equalTo('male').orderByChild('Id').startAt(lastItemKey).limitToFirst(10)