Return data as a single object instead of an array of objects.
Query result must be one row (e.g. using .limit(1)), otherwise this returns an error.
const { data, error } = await supabase
  .from('characters')
  .select('name')
  .limit(1)
  .single()