Kotlin: Retrieve one row of data

Examples

With `select()`

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