© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
SupabaseS
Supabase•3y ago•
80 replies
beroer

Can't update a row (typescript)

i do:

    const { data: updateData, error: updateError } = await supabase
      .from('draft')
      .update(get().getValues(uuid))
      .eq('uuid', uuid)
      .select()
    const { data: updateData, error: updateError } = await supabase
      .from('draft')
      .update(get().getValues(uuid))
      .eq('uuid', uuid)
      .select()

where
getValues()
getValues()
returns an object.
AFAIK having
.select()
.select()
chained at the end should return the updated row but that or
.select('*')
.select('*')
both only return an empty array.

i don't get any error message, but also the row doesn't update.
Supabase banner
SupabaseJoin
Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.
45,816Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements
Next page

Similar Threads

Update latest row
SupabaseSSupabase / help-and-questions
3y ago
Update a supabase table row from next.js
SupabaseSSupabase / help-and-questions
4y ago
Can’t edit my row in supabase table
SupabaseSSupabase / help-and-questions
4mo ago
Can't use UUID string when uploading row
SupabaseSSupabase / help-and-questions
4y ago