How will I iterate through this data structure?

I need to filter by an object in the .meta object and I can’t figure out how to break this apart in an iterator so I can do so. Thanks so much!

The problem is that contacts is a collection, not an array.

To put an array in the iterator, you can try using

You can use the built-in function toArray

e.g.:

toArray(data.contacts)

For more information, see https://www.make.com/en/help/functions/array-functions.html#toarray--collection-

3 Likes