Add/Append value to exisiting field

Hello,

I want to add a value to an existing field as a prefix. I know how to update fields but I have no clue how I get the reference to the existing value to concatenate it.

Example:

Before:
{
“type”: “world”
}
After:
{
“type”: “hello_world”
}

Thanks in advance

I found the solution. It works with the CONCAT() string function.

type || "_world"
CONCAT(type, "_world")
CONCAT2("_",type,"world")