Kotlin: Retrieve one row of data

Examples

With select()

val result = supabase.from("characters").select(Columns.list("name")) {
    limit(1)
    single()
}