i\'m using Firestore as my database in a project and i have a table that i need to do a query inside an object
{ foo: "data", bar: "data&
Try ( change from 'Table' to 'TEST' )
xptoCollection : AngularFirestoreCollection; constructor(private afs: AngularFirestore) { } this.xptoCollection = this.afs.collection('TEST', ref => { return ref.where('exObject.{dataToQuery}', '==', 'value'); });