I am using supabase on sveltekit. And On using the following code to retrieve all rows in onMount I am getting result as undefined.
Code:
onMount (async () => {
let { data, error } = await supabase.from('users').select('*');
console.log(data);
});
Please help.