Supabase returns empty array – Postgresql
I have a messages table , under a 'public' schema in Supabase. I'm trying to fetch all rows from my local dev environment, but nothing is returned. I'm trying: const response = await supabase.from('messages').select('*'); I see the request in the…