function replace(original, search, replace)

replace() returns a string with the search string replaced by the replace string. It replaces all occurrences.

Arguments:
original: An expression that returns a string
search: An expression that returns a string to search for
replace: An expression that returns the string to replace the search string with

Example Query:
    RETURN replace("hello", "l", "w")