Swift: Limit the query to a range

Limit the query result by from and to inclusively.

Examples

With `select()`

try await supabase
  .from("countries")
  .select(
    """
      name,
      cities (
        name
      )
    """
  )
  .range(from: 0, to: 1)
  .execute()