How can I get the value below?
The display value does not match, as it is a collection
Get and map function.
Thank you @alex.newpath
Why doesn’t the function return anything?
I found, problem with my space
Than you @alex.newpath
There you go. The second argument is an index or an object 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)
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
Using
yields this result of {object}
So then I thought by wrapping it all with GET then it could get the key name
out of the objects
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);,)