function toString(expression)

toString() converts the argument to a string. It converts integral and floating point numbers and booleans to strings, and if called with a string will leave it unchanged.

Arguments:
expression: An expression that returns a number, a boolean, or a string

Example Query:
    RETURN toString(11.5), toString("already a string"), toString(TRUE)