I upgraded AngularFire to 7, and have a problem with using .where with collectionReference. So simply.. how to use it properly?
I tried to use 'collection' from '@angular/fire/firestore' like:
const ref = collection(this.firestore, 'collectionName');
but the ref has not 'where' or something.
I know that '@angular/fire/firestore' has also 'query' and 'where', but I don't know how to use it.
How to find documents in the collection using 'where' with a new API?