ArrayGetObjectByPath Op
Returns the object at the position defined by a path
Summary (oneliner)
useful when working with nested data structures.
the path defines the way to the object . the given object will be returned
given an array like this:
[
[
{
"name": "alyx"
},
{
"name": "eli"
}
],
[
{
"name": "gordon"
}
]
]
a path of 0.1
will result in this array:
[
{
"name": "alyx"
},
{
"name": "eli"
}
]
Full Name
- Ops.Data.JsonPath.ArrayGetObjectByPath
- Core Op - Official cables op
- MIT
Documentation (markdown)
Issues
Example patch id
Youtube ids (comma seperated)
Op Licence
Caniuse query
Example Patch ArrayGetObjectByPath - Example
INPUT PORTS
Array (Array)
Path (String)
the path
OUTPUT PORTS
Output (Object)
the object
Found (booleanNumber)