I am facing an issue with combining 2 queries in my Firestore collection.
These are the 2 examples that work:
database
.collection('servicebonnen')
.where('medewerker', '==', 'CEES')
and:
database
.collection('servicebonnen')
.where('date', '>', this.today)
.where('date', '<', this.tomorrow)
However, why does combining these queries not work as expected?:
database
.collection('servicebonnen')
.where('medewerker', '==', 'CEES')
.where('date', '>', this.today)
.where('date', '<', this.tomorrow)