alt 99
10/27/2024, 6:48 AMsupabase.from(ELEMENT_TABLE).update(
update = {
set("role", roleId)
},
request = {
filter {
eq("id", elementId)
}
}
)
code like this which will update role column value, and it always return success ( http code is 200), but the value in supabase does not change, anybody could help me? supabase version is 3.0.1Jan
10/27/2024, 9:47 AMalt 99
10/27/2024, 11:07 AM