Flutter: Column matches a case-insensitive pattern

Finds all rows whose value in the stated column matches the supplied pattern (case insensitive).

Parameters

Examples

With `select()`

final data = await supabase
  .from('countries')
  .select()
  .ilike('name', '%alba%');