Home

Column is a value

Match only rows where column IS value.

Parameters
  • column
    REQUIRED
    string

    The column to filter on

  • value
    REQUIRED
    null | boolean

    The value to filter with


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