How to get a property from object within an array

Here’s what I tried:

{{get(first(map(4.values; “option_value”; “field_id”; "69e8db9e-0e9b-44d1-bfee-79b84e31a5eb
")); “name”)}}

Here values is an array which we are filtering with field_id then extracting option_value which is an object, in the result we want name from the object.

Usually, you’ll only use either get or first/last, not both together.

{{ first(map(4.values; "option_value.name"; "field_id"; "69e8db9e-0e9b-44d1-bfee-79b84e31a5eb")) }}

For more information, see Mapping with Arrays below.

Here are some useful links and guides you can use to learn more on how to use the Make platform, apps, and app modules. I found these useful when I was learning Make, and hope they might benefit you too —

Learn Make

How-Tos

Hope this helps! If you are still having trouble, please provide more details.

@samliew