I want to query all documents in a collection that fall between startdate and enddate
i.e.
startDate<= CurrentDate AND endDate >= CurrentDate
I want to query all documents in a collection that fall between startdate and enddate
i.e.
startDate<= CurrentDate AND endDate >= CurrentDate
Using the query builder throws this error but it is possible in Firebase using the built in query builder.
I'd have thought this an extremely common query to extract docs between 2 dates.
I'd rather not use conditional visibility on the Listview, because if the app scales it could start to return 1000s of records if I use just one "not-in" operator.
What are other people doing?
Cheers