JavaScript: Column is a value

Examples

With `select()`

const { data, error } = await supabase
  .from('cities')
  .select('name, country_id')
  .is('name', null)

With `update()`

const { data, error } = await supabase
  .from('cities')
  .update({ name: 'Mordor' })
  .is('name', null)

With `delete()`

const { data, error } = await supabase
  .from('cities')
  .delete()
  .is('name', null)

With `rpc()`

// Only valid if the Postgres function returns a table type.
const { data, error } = await supabase
  .rpc('echo_all_cities')
  .is('name', null)