LEGACY_STRINGIFY

Converts an object parameter to a legacy String representation.

Syntax 

LEGACY_STRINGIFY(object)

Usage examples 

Example 1

Input

1
{
2
"my_action": {
3
"data": {
4
"foo": "bar"
5
}
6
}
7
}

Formula

LEGACY_STRINGIFY(my_action.data)

Output

"{\"foo\"=>\"bar\"}"
Was this helpful?