query(meetingsCollection, where("start", "in", today), orderBy("start", "asc")
I’d like a Firestore query, so that I can fetch all documents between 02/12/2022 – 00:00:00.000 && 03/12/2022 00:00:00.000, ordered by the Date property start, so that I can bucketsize my firestore data request and limit overreads, then use said documents to visually filter accordingly via the front-end.
Can you assist me with this?
3
Answers
For anyone looking for the actual solution =>>
How to get start and end of day in Javascript?
Firestore query by date range