10-23-2019 12:22 AM
I have the following json:
[
{
“name”: [
“John”,
“Rick”,
“Martha”
],
“city”: [
“New york”,
“Washington”,
“Delhi”
],
“gender”: [
“Male”,
“Male”,
“Female”
]
}
]
Need to write this into csv but csv formatter needs the data to be flattened.
How can i do this.
10-23-2019 08:02 AM
Hello,
Have you already review the existing Community topics below? Our developers replied in each of these with sample pipelines demonstrating how to flatten arrays.