JavaScript: Column matches a case-insensitive pattern (original) (raw)

Match only rows where column matches pattern case-insensitively.

Parameters

(Required)
The column to filter on

(Required)
The pattern to match with

Examples

With `select()`

const { data, error } = await supabase
  .from('characters')
  .select()
  .ilike('name', '%lu%')