I have a users collection every user has a sub collection called "settings" and "settings" have documents like ids "option1","option2"
return this.fireStore.doc(`users/${user.uid}`).valueChanges()
so I need to get also a user settings with all documents options like
userA = {
username:'name',
email:'email@email',
settings:{
option1 :{data},
option2 :{data}
}}