Match only rows where column is not equal to value.
This filter does not include rows where column is NULL. To match null values, use .is(column, null) instead.
The column to filter on
The value to filter with
const { data, error } = await supabase
.from('characters')
.select()
.neq('name', 'Leia')