timestamps to dates filter in supabase-js #11351
Unanswered
emersonlaurentino
asked this question in
Feature Requests
Replies: 1 comment
|
You might be able to use the full time with gte and lte. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I have a column of type
timestamptzand I want to do a query filtering using a date.So, I can do this in SQL like this:
But, I can't do a query on supabase-js, I would like to do something like this:
Today the only way I found to do this is by creating a Postgres Function and calling then using
.rpc.Would it be possible to add functionality similar to this in subbase-js?
All reactions