Match only rows where column matches pattern case-insensitively.
column
pattern
The name of the column to apply a filter on
The pattern to match by
response = supabase.table("countries").select("*").ilike("name", "%alba%").execute()