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