1. Docs
  2. Formulas
  3. Functions

LEGACY_STRINGIFY

Converts an object parameter to a legacy String representation.

Categories: Text

Syntax

LEGACY_STRINGIFY(object)

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?