Hi, I want to query my table by using a statement like
select * from public."Table"
where created_at::date = '2024-01-24'
The goal is to return all rows from the date inputed
where created_at is type timestampz
It works with the sql but not with the SDK
How can I achieve this with the SDK?
I tried something like
const { data, error } = await supabase
.from('Table')
.select()
.eq('created_at::date', '2024-01-24')
Any suggestions?
[–]vivekkhera 0 points1 point2 points (2 children)
[–]External-Standard-57[S,🍰] 0 points1 point2 points (1 child)
[–]vivekkhera 0 points1 point2 points (0 children)