1
How do I recover the amount of children you have in a knot?
I already have the right path, I just need to know how to count the children of this knot.
private DatabaseReference qtdeFilRef;
qtdeFilhosRef.child("primeiroNo").child("segundoNo");
Does anyone know how to get the kids back from "second"?
There is another similar topic, which a firebase member answered. And warned that if there are many queries will overload the memory and processing time. https://stackoverflow.com/questions/15148803/in-firebase-is-there-a-way-to-get-the-number-of-children-of-a-node-without-load
– Vinicius Petrachin