Converts a JSON string into a ThingsDB value.
This function does not generate a change.
json_load(string)
Argument | Type | Description |
---|---|---|
string | str | JSON string to convert. |
ThingsDB value.
This code shows an example for json_load:
json_load('{"success": true}');
Return value in JSON format
{
"success": true
}