.is()
A check for exact equality (null, true, false), finds all rows whose
value on the stated column
exactly match the specified value
.
- JavaScript
- Python
const { data, error } = await supabase
.from('cities')
.select('name, country_id')
.is('name', null)
Parameters
columnrequiredobject
The column to filter on.
valuerequired|
The value to filter with.
Examples
select()
With - JavaScript
- Python
const { data, error } = await supabase
.from('cities')
.select('name, country_id')
.is('name', null)
update()
With - JavaScript
- Python
const { data, error } = await supabase
.from('cities')
.update({ name: 'Mordor' })
.is('name', null)
delete()
With - JavaScript
- Python
const { data, error } = await supabase
.from('cities')
.delete()
.is('name', null)
rpc()
With - JavaScript
- Python
// Only valid if the Stored Procedure returns a table type.
const { data, error } = await supabase
.rpc('echo_all_cities')
.is('name', null)