Sorry if this is documented in the docs, but I couldn’t find it. If I have a DateTime field in the database. Is there any way to query based on dates? I want to query for all data that has the same Date as today.
r
Ryan
06/16/2021, 12:57 PM
@Bård 👋
You can create a range that queries b/w the start and end dates via
gte
and
lte
operators for the column.
b
Bård
06/16/2021, 12:59 PM
Hey @Ryan, cheers! I will look into those. Thanks for the swift reply - as always!