wip: currently rewriting the project as a full stack application tangled.org/kacaii.dev/sigo
gleam
at main 10 lines 201 B view raw
1--  Update an authenticated user profile 2update public.user_account as u set 3 full_name = $2, 4 email = $3, 5 phone = $4 6where u.id = $1 7returning 8 u.full_name, 9 u.email, 10 u.phone;