Swift: Limit the number of rows returned

Limit the query result by count.

Examples

With `select()`

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

On a foreign table

try await supabase
  .from("orchestral_sections")
  .select(
    """
    name,
    instruments (
      name
    )
    """
  )
  .limit(1, referencedTable: "instruments")
  .execute()