Hello,
I have a string that looks like this:
{
"sku":"1x130F1002P2/2x023F35/1x044F7248"
}
If I use a value mapper of String: Explode with the delimiter I end up with:
{
"sku": [
"1x130F1002P2",
"2x023F35",
"1x044F7248"
]
}
How do I go about getting this to look similar to:
{
"sku": [
{
sku: "1x130F1002P2"
},
{
sku: "2x023F35"
},
{
sku: "1x044F7248"
}
]
}
Cant quite figure out how to get that new sku key in there with the appropriate value.