Difficulty setting up a filter

hello, i’d like to set a up a filter that will only let the scenario go to the next module if a certain number is found. The problem is, the array I’m validating is composed of collections and not primitive values.
Like this:

So this filter will not work as intended:

Hey @Thiago_Borja, Welcome to the community
You cannot directly check the values of an array, Firstly you will have to iterate the items of the array using the iterator and in the filter use the value of the iterator


1 Like

that worked perfectly! thank you so much

2 Likes