The maximum number of rows to return
Set this to limit rows of foreign tables instead of the parent table.
response = supabase.table("countries").select("name").limit(1).execute()
response = (
supabase.table("countries")
.select("name, cities(name)")
.limit(1, foreign_table="cities")
.execute()
)