Hi! I getting started with postman flows!
So I have two arrays. Here an example
[
{
“workflow”: 1,
“description”: “Sector 1”
},
{
“workflow”: 2,
“description”: “Sector 2”
},
]
and other array
[{
“workflow”: 4,
“_deleted”: false,
“dimension1”: [
“416”
]
},
{
“workflow”: 5,
“_deleted”: false,
“dimension1”: [
“417”
]
}]
I need to join these arrays by their workflow number and i need to output workflow, description and the list of dimension1 …
In postman y got both list after execute two requests… but I cant merge or join them…
Can someone help ? thanks