FROM_KEY_VALUE
GET_RANGE
ITEM_INDEX
JSON_PATH
"[{
"name": "The Great Gatsby",
"author": {
"name": "F. Scott Fitzgerald"
}
},
{
"name": "Nineteen Eighty-Four",
"author": {
"name": "George Orwell"
}
}]"
"$[*].author.name"
"F. Scott Fitzgerald"
, "George Orwell"
"{ "net_id": 41 }"
"net_id"
"41"
"{ "net_id": [41, 42] }"
"net_id"
"[41, 42]"
"{ "net_id": [41, 42] }"
"net_id[*]"
"41"
, "42"
"{ "net_id": [41, 42] }"
"net_id.parent"
null
"[1,2,3]"
"$[*]"
"1"
, "2"
, "3"
"[{
"name": "The Great Gatsby",
"author": {
"name": "F. Scott Fitzgerald"
}
},
{
"name": "Nineteen Eighty-Four",
"author": {
"name": "George Orwell"
}
}]"
"$[*].author.name"
"{"name":"F. Scott Fitzgerald"}"
,"{"name":"George Orwell"}"
JSON_TO_RECORD
MAP_WITH_INDEX
"a"
, "b"
, "c"
{"index": 0, "value": "a"}
, {"index": 1, "value": "b"}
, {"index": 2, "value": "c"}
QUERY_STRING_TO_RECORD
TO_ARRAY
["a", "c"]
, ["b"]
"a"
, "c"
, "b"