I am tring to query to a Firestore database to a collection and filter by date. I have a Timestamp field (dateStart) and i need to get the results have date today , i don't care about time ,i tried to use this but it works only have same time
My document : 20 septembre 2021 at 01:30:00 UTC+1
refWallet
.where("dateStart", "==", new Date("2021,09,20"))
.get()