Thank you for your response very highly appreciated!
My mistakes, its working both. Last time i check it wasn't work.
supabase.from("countries").update(
{
Country::name setTo "Australia"
//or
set("name", "Australia")
}
) {
filter {
Country::id eq 1
//or
eq("id", 1)
}
}