Reputation: 1472
What is the maximum nest depth in Google Firebase's new Firestore?
The real time database's limit is 32: https://firebase.google.com/docs/database/web/structure-data#avoid_nesting_data
If you need more depth, is it better to just flatten the key paths into a string, as some NoSQL databases do (E.g Elastic search)?
Upvotes: 1
Views: 2162