Swift: Column is greater than a value

Match only rows where column is greater than value.

Examples

With `select()`

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