Firebase – How to get the second 10 document in a Firestore Query?
More precisely, a slice of the ordered documents. My idea would be this, but it isn't good: firestore().collection("queue").orderBy("order_id", "asc").limit(3,5) I'd be grateful if anyone could answer it.