Function JSON_decode()
converts a string in JSON format to an object and returns this object.
Arguments:
- String <string | text>
Returns:
- Object <object>
Comman Usage
Example: Convert each row of an alias to object and return a key of the object
UNCOLLECT ['{"name":"Lisa","age":23}', '{"name":"Paal","age":35}'] as strings
with JSON_decode(strings) as objects
return objects.name
| objects.name |
|--------------|
| Lisa |
| Paal |