Match only rows where column
is equal to value
.
To check if the value of column
is NULL, you should use .is()
instead.
The column to filter on
The value to filter with
const { data, error } = await supabase
.from('characters')
.select()
.eq('name', 'Leia')