Swift: Column is less than or equal to a value

Match only rows where column is less than or equal to value.

Examples

With `select()`

try await supabase
  .from("cities")
  .select("name, country_id")
  .lte("country_id", value: 250)