Column is a value
Match only rows where column
IS value
.
Parameters
- columnREQUIREDstring
The column to filter on
- valueREQUIREDnull | boolean
The value to filter with
const { data, error } = await supabase
.from('countries')
.select()
.is('name', null)