increment function, need user uuid in edge function.

this is what i tried but it prints undefined

const {
data: { user },
} = await supabase.auth.getUser()
const userID = user?.id;
console.log(userID);

await supabase.rpc('increment', { row_id: userID })
Was this page helpful?