Finds all rows whose value in the stated column
matches the supplied pattern
(case insensitive).
final data = await supabase
.from('cities')
.select('name, country_id')
.ilike('name', '%la%');
final data = await supabase
.from('cities')
.update(\{ 'name': 'Mordor' \})
.ilike('name', '%la%');
final data = await supabase
.from('cities')
.delete()
.ilike('name', '%la%');
// Only valid if the Stored Procedure returns a table type.
final data = await supabase
.rpc('echo_all_cities')
.ilike('name', '%la%');