Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
818 views

Is it possible to do filters or with multiple reference tables, like if we do it in raw postgresql query like below (just for example): SELECT reports.*, report_categories.*, report_details.* FROM ...
Muhammad Haekal's user avatar
1 vote
1 answer
1k views

I have a custom backend that needs to authenticate users before letting them request some Express endpoints. It works that way: NextJS (front-end) sends a request to NodeJS/Express (backend) with a ...
Alexis's user avatar
  • 57
2 votes
2 answers
952 views

I'm trying to create a very basic app in which I'm using Clerk for Auth and supabase as my db. I've followed the tutorials that I could find and stitched something together which works pretty well ...
somethingElse's user avatar
0 votes
1 answer
1k views

I'm only able to fetch certain columns out of my database. I'd like to get every row out of my table, but when I select all, nothing is returned. My table (shows) has 9 columns. I just created the ...
wpix's user avatar
  • 1
0 votes
0 answers
1k views

I have a next.js application and I am following the documentation for allowing users to reset passwords. So far, I built the password reset page and made it publicly accessible with a form asking for ...
AbedDoesCode's user avatar
0 votes
1 answer
919 views

I'm building a Google slides add on. The DB operations are implemented using Supabase and the frontend using React. I'm trying to use Supabase oauth to authenticate the user via Google. Here's my code:...
pyron_orion's user avatar
1 vote
1 answer
1k views

I have a table where when I test it with the following query select *, category_product from product inner join category on product.category_id = category.id inner join type on product.type_product = ...
FathTech's user avatar
1 vote
1 answer
949 views

I'm using Vite + React Router v6 + Supabase Auth components with a Google OAuth provider. I double checked that the Google credentials are in Supabase configuration, https://{my_supabase_id}.supabase....
AlxVallejo's user avatar
  • 3,258
1 vote
2 answers
891 views

Using npm I have installed Nuxt 3 and Supabase but in vs code I keep getting the following error; Cannot find name 'useSupabaseClient'. When I run npm run dev I get the following error message on the ...
Amy's user avatar
  • 11
4 votes
2 answers
4k views

I want users to be able to pick a profile picture from the gallery using the Image Picker from expo and upload it to supabase in a filename that is structured like this userid.jpeg. I then want to ...
elvis obondo's user avatar
0 votes
1 answer
135 views

Does anyone know what I'm doing wrong? My homepage is at src/routes/+page.server and I want users to be redirected there after they log in/sign up. Also, when I run this website, the first thing I see ...
Claryssa's user avatar
0 votes
1 answer
490 views

Any database operation I perform inside an edge function is not working as expected. For example, if I insert a record, it will not persist to the database or if I select, it returns 0 records. I don'...
Ahmad Raza's user avatar
0 votes
1 answer
2k views

I'm using the supabase js API to create a public bucket and upload images to it. This works so far: const { data: bucket, error } = await supabase.storage.createBucket( bucketName, { ...
alexgarciaalcuadrado's user avatar
2 votes
3 answers
2k views

I'm in my backend (Node and Typescript). In my rpc function, Im just trying to append jsonb to a jsonb array: BEGIN UPDATE public.profile SET checking_tokens = checking_tokens || input::JSONB ...
workinprogress98's user avatar
0 votes
1 answer
2k views

I'm trying to create a user with supabase.auth.admin.createUser() method in my Next.js project, but it fails with error { message: "Database error creating new user" name: "...
Jindun's user avatar
  • 1
3 votes
1 answer
751 views

I just create a Supabase DB using NestJS and TypeORM. I have some entities like this: @Entity() export class UserService { @PrimaryGeneratedColumn() id: number; @OneToOne(type => User)...
queng's user avatar
  • 69
2 votes
1 answer
699 views

I am trying to follow supabase's documentation at "https://supabase.com/docs/reference/javascript/storage-getbucket" to retrieve bucket details. When I write the following code, I get a 404 ...
Adam Jones's user avatar
0 votes
1 answer
349 views

I am using supabase along with nextjs page router and i don't know how to set this thingand in middleware.ts there is an error in "lib/database.types"i don't know about where to get it ,...
harsh jani's user avatar
3 votes
0 answers
670 views

I am building an Electron App with this user flow: 1- User logs in 2- Enters local db credentials 3- App fetch local db every X minutes 4- App sends data to somewhere else logged in as the user Since ...
pida's user avatar
  • 425
0 votes
0 answers
138 views

I am creating a next app that protects some urls based on user authentication. I have an auth form set up like this import { getUrl } from "@/lib/utils"; import { Button } from "./ui/...
theProgrammer's user avatar
1 vote
0 answers
588 views

I want to use supabase only for real-time updates of the PostgreSQL database. Meaning that I don't want to allow anon/authenticated to read/update/insert/delete, but only want to push live changes ...
Jan Janssen's user avatar
0 votes
1 answer
497 views

I am trying to connect a react native app to a local Supabase development set up. I am doing so using the localhost API url and the provided anon key: const supabaseUrl = 'http://localhost:54321' ...
supastuck's user avatar
0 votes
1 answer
394 views

I'm developing an application with a Supabase backend, and I'm currently attempting to deploy a separate, very simple backend using Bun with TypeScript and the Supabase-js npm library. The goal of ...
MerlinChiodo's user avatar
1 vote
0 answers
860 views

I want to implement a many-to-many relationship between rows of the same table. Imagine I have a books table and I want each book to have a list of related books to be queried and displayed on my site....
gugavieira's user avatar
7 votes
2 answers
3k views

I'm using a React Native project with Expo v49, and I added a Supabase call to read some data from the database, and it works on ios/android, But when I open the web version, I get "...
shadowcrux's user avatar