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 array like this:
[
[
{
"firstName": "Gordon",
"lastName": "Freeman"
}
],
[
{
"firstName": "Eli",
"lastName": "Vance"
}
]
]
a path of 0
will result in this array:
[
{
"firstName": "Gordon",
"lastName": "Freeman"
}
]
doc
issues
youtube id
caniuse query
collections
Inputs
Array (Array)
Path (String)
path to array (i.e. data.numbers)
Outputs
Output (Array)
array of values
Found (boolean Number)
Changelog
cloned op from Ops.Json.ObjectGetArrayByPath
2021-01-08 - cables
Ops.User.cables.ArrayGetArrayByPath renamed to Ops.Json.ArrayGetArrayByPath
2021-01-08 - cables
2021-01-08 - cables
Ops.User.cables.ArrayGetArrayByPath renamed to Ops.Json.ArrayGetArrayByPath
2021-01-08 - cables