Hello,
I have a function node that return data:
then, I have an HTTP node wich get the three requests and return looks like:
[
{
"order_detail": {
"id": 106,
...some other data
}
},
{
"order_detail": {
"id": 107,
...some other data
}
},
{
"order_detail": {
"id": 108,
...some other data
}
}
]
I would like to add variable into each order_detail to have something like;
[
{
"order_detail": {
"id": 106,
"myVariable": 123,
...some other data
}
},
{
"order_detail": {
"id": 107,
"myVariable": 123,
...some other data
}
},
{
"order_detail": {
"id": 108,
"myVariable": 123,
...some other data
}
}
]