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)

3 Likes

This solution you mentioned is not helping me to solve my issues. I’m trying to map over an array, then extract and join members of the collection.

Here is the data from ASANA
image

Using
image
yields this result of {object}
image

So then I thought by wrapping it all with GET then it could get the key name out of the objects

image

I want this to return the names of the projects joined with a “,” but instead the return value is empty.

What are you trying to get, is the project name?

What you can do is,

join(map(Memberships;project.name);,)

2 Likes