I have an app that has this schema:
HOME -> Collection -> Document -> Collection -> Document
And code:
db.collection('coll').doc('doc').collection('subcoll').doc('subdoc')
But the problem I'm facing is that my app requires more pairs (1 to 3) of collections and documents nested in depth. Is this a problem?
How many pairs of collections and documents can I have in chain?