Hello, I am attepting to write a flow that looks through an Array of Objects and determines if there is a matching value on a certain field.
Here is the structure of my Array of Objects:
[
{
"id": "ABC",
"label":"ABC"
},
{
"id": "BCD",
"label":"BCD"
},
{
"id": "CDE",
"label":"CDE"
}
]
Here is the structure I am trying to match against:
{
"id":"ABC"
}
I want to build a condition such that if the id value is contained within the Array then evaluate true, but if its not contained within the array, evaluate false.
Using the Contains option within the Condition Connector is giving me false values everytime.