Finds all rows satisfying at least one of the filters.
If true, negate the entire block.
The block to apply the `or` filter to.
supabase.from("countries").select(columns = Columns.list("name")) {
filter {
or {
Country::id eq 2
Country::name eq "Mordor"
//or
eq("id", 2)
eq("name", "Mordor")
}
}
}
supabase.from("countries").select(columns = Columns.list("name")) {
filter {
or {
Country::id gt 3
and {
Country::id eq 1
Country::name eq "Mordor"
}
}
}
}