My goal is to retrieve a specific value from a document. I attempted the following approach:
getAuthorData(){
const test = this.afs.collection('Authors').doc('Test').get('name');
console.log(test);
}
However, I encountered the following error message:
ERROR in src/app/blogdetail/blogdetail.component.ts(55,65): error TS2559: Type '"name"' has no properties in common with type 'GetOptions'.