Swift: Limit the number of rows returned

Limit the query result by count.

Examples

With `select()`

try await supabase
  .from("countries")
  .select("id, name")
  .limit(1)
  .execute()

On a foreign table

try await supabase
  .from("countries")
  .select(
    """
    name,
    cities (
      name
    )
    """
  )
  .limit(1, foreignTable: "cities")
  .execute()