beta
cables is under heavy development.
There might be one or another bug, please let us know about it!

ObjectGetArrayByPath Op



ObjectGetArrayByPath
Namespace: Ops.Json

Op author: stephan

returns the array at the position defined by a path


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"
            }
        ] 


Inputs

Object (Object)

json object

Path (String)

path to array (i.e. data.numbers)

Outputs

Output (Array)

array of values

Found (boolean Number)

Caught a mistake or want to contribute to the documentation?

Edit Documentation 

ObjectGetArrayByPath - Example


Patches using ObjectGetArrayByPath

  • Examples (1)
  • Public
  • My Patches