Kotlin: Column is not equal to a value

Finds all rows whose value on the stated column doesn't match the specified value.

Parameters

Examples

With `select()`

supabase.from("cities").select(columns = Columns.list("name", "country_id")) \{
    filter \{
        City::name neq "The Shire"
        //or
        neq("name", "The Shire")
    \}
\}

With `update()`

val toUpdate = City(name = "Mordor")
supabase.from("cities").update(toUpdate) \{
    filter \{
        City::name neq "The Shire"
        //or
        neq("name", "The Shire")
    \}
\}

With `delete()`

supabase.from("cities").delete \{
    filter \{
        City::name neq "The Shire"
        //or
        neq("name", "The Shire")
    \}
\}

With `rpc()`

supabase.rpc("echo_all_cities") \{
    filter \{
        neq("address->postcode", 90210)
    \}
\}