Finds all rows whose value in the stated column matches the supplied pattern (case insensitive).
column
pattern
The column to filter on.
The pattern to match with.
final data = await supabase .from('countries') .select() .ilike('name', '%alba%');