supabase-go icon indicating copy to clipboard operation
supabase-go copied to clipboard

Unofficial Supabase client library for Go.

Results 24 supabase-go issues
Sort by recently updated
recently updated
newest added

Is there a way to see the raw SQL that gets sent to Postgres? Also how would I go about being able to supply raw SQL to the request engine?

I want to add a forgot password functionality to my web app. I can send a password recovery link to user but in order to update user I need user...

Based on the sparse readme examples, I've got an insert query that looks like ``` var results map[string]interface{} // I also tried the type RequestError, no luck err := supaClient.DB.From("table").Insert(user).Execute(results)...

When using the client.Auth.User() function, if the JWT token is expired, the returned error is initialized but without the internal Error() function, meaning the error is not nil and there's...

Hey, since I just spend multiple hours on this problem, I thought it could be worth taking it as example. When making a nested request, e.g. `select=user!inner (name), id&user.name=eq.foo`, there...

It shows this error `Post "/rest/v1/emails": unsupported protocol scheme ""` when deploying from `render.com` server but it works fine locally. I don't know where the problem is ``` type Emaildb...

is it possible to pass the redirectTO parameter for the signup confirmation mail sent by supabase just like its done in the js syntax `async function signUpNewUser() { const {...

How to count the number of rows returned by a select query? The following code throws error "failed to count messages in thread: PGRST200: Could not find a relationship between...

This pull request adds a VerifyOtp method to the Auth package. This method allows verifying OTP credentials. The implementation includes creating a new HTTP request to the verification endpoint and...

Hi, thanks for writing this package. I'm trying to delete all rows in a table (see below) This: ```go var results map[string]interface{} err := supabase.DB.From("events").Delete().Execute(&results) if err != nil {...