Limit the query result by count.
The number of rows to limit the result to.
The foreign table to limit by.
supabase.from("countries").select \{
limit(count = 1)
\}
val columns = Columns.raw("""
name,
cities (
name
)
""")
supabase.from("countries").select(
columns = columns
) \{
limit(count = 1, referencedTable = "cities")
\}