Swift: Column matches a case-insensitive pattern

Match only rows where column matches pattern case-insensitively.

Examples

With `select()`

try await supabase
  .from("cities")
  .select("name, country_id")
  .ilike("name", pattern: "%la%")