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

Noticed a small typo in the readme. Great library, thanks! 🚀

I'm not sure why this if is there, but it prevents creating a file with a specific content type, meaning we can't upload to buckets that filters on anything except...

Allows for filtering on MIME type for Supabase Buckets

Change CreatSignedUrl to CreateSignedUrl. Add Context-Type to the CreateSignedUrl request header.

Hi all, I may be doing something stupid here so please forgive me. When i run a sign in, how do i then use that logged in user to perform...

I was trying to get User by token, the token coming from `supabase.auth.currentSession.access_token` (on flutter) and after that, I can't get the data user base on the token. do you...

Thank you for the library. I am missing the a order function in the query request builder, as described for the JS library here: [https://supabase.com/docs/reference/javascript/order](https://supabase.com/docs/reference/javascript/order)

I stumbled across a weird behavior where I could not use a filter with `eq` to filter by an IP-Address (e.g. `10.0.0.1`). The generated url for `From("Foo").Select("*").Eq("ip", "10.0.0.1").Execute()` is `/rest/v1/Foo?select=%2A&vpn_ip=eq.%2210.0.0.1%22`....

How can I call Postgres function, In JS, it would be something like this. ``` await supabase .rpc('hello_world'); ```

Hello, I've tried to use the client rpc call with something like: client.DB.Rpc("search",....) but I get the error: Post "/rpc/public/search": unsupported protocol scheme "" I think there's an issue with...