Get value in Collection

How can I get the value below?

image
The display value does not match, as it is a collection

Get and map function.

1 Like

Thank you @alex.newpath

Why doesn’t the function return anything?
image

I found, problem with my space

Than you @alex.newpath
image

2 Likes

There you go. The second argument is an index or an object path.

get (object or array; path)

Returns the value path of an object or array. To access nested objects, use dot notation. The first item in an array is index 1.

get(array;1+1)

get(array;5.raw_name)

get(object;raw_name)

get(object;raw_name.sub_raw_name)

2 Likes