Match only rows where column matches pattern case-sensitively.
column
pattern
The column to filter on
The pattern to match with
const { data, error } = await supabase .from('characters') .select() .like('name', '%Lu%')