JavaScript: Column is in an array

Examples

With `select()`

const \{ data, error \} = await supabase
  .from('characters')
  .select('name, book_id')
  .in('name', ['Harry', 'Hermione'])

With `update()`

const \{ data, error \} = await supabase
  .from('countries')
  .update(\{ name: 'Mordor' \})
  .in('name', ['Gondor', 'Rohan'])

With `delete()`

const \{ data, error \} = await supabase
  .from('characters')
  .delete()
  .in('name', ['Dumbledore', 'Snape'])

With `rpc()`

// Only valid if the Postgres function returns a table type.
const \{ data, error \} = await supabase
  .rpc('echo_all_characters')
  .in('name', ['Luke', 'Leia'])