I'm trying to reach the data when theres a collection, and inside that collection a doc and inside that doc a collection again.
But im not able to do it.
getTeams() {
this.db
.doc('epicseven')
.collection('teams')
.snapshotChanges()
.subscribe(data => {
console.log(data);
});
}
this is the database.
I want to access the JSON with the last array, so i can iterate in the html.
Thanks for your help.