I use firebase in React.js project. in firebase I have such collection. there nearly 400 IDs:
users:{
'1JDJDHDHDSbBDBDB':20,
'2JDJDHDHDSbBDBDB':8,
'3JDJDHDHDSbBDBDB':23
...........
'3JDJDHDHDSbBDBDB':79
'3JDJDHDHDSbBDBDB':23
}
How to make a queries to load first 10 users, then the rest ?
I have tried with
limitToFirst=10
But cannot set range from 10 till rest..... thanks in advance.