Filter array

hello

i have trouble with filter of array. I map array with id value and I want everything to pass if oneof these id’s is not inside the array, but bundles do still go through filter even if bundle has tags array that contains id 1151 for example. How do I fix thank you so much.

Example I Filter:

 {
        "Id": 502111,
        "Name": "John Doe",
        "FirstName": "John",
        "LastName": "Doe",
        "CompanyName": "company",
        "Tags": [
            {
                "Id": 960,
                "Name": "Tag 1"
            },
            {
                "Id": 1152,
                "Name": "Tag 2"
            }
        ]
}

Is not possible like in the filter maybe?

Welcome to the Make community!

You’ll have to join the array and then use Text Operator: Does not match pattern instead.

For more information, see the function documentation in the Help Center.

Hope this helps! Let me know if there are any further questions or issues.

@samliew

P.S.: Investing some effort into the Make Academy will save you lots of time and frustration using Make.

1 Like

Ah is smart thank you