Forum Discussion
7 Replies
- mswainEmployee
IMO, this can be achieved in 3 steps:
Step 1. Split the Name on basis of comma.
Step 2. Create an array using map() with ID and NAME as key like below:
$array.map(x => {‘ID’: $ID,‘NAME’:x})
Step 3. Use json splitter. - nganapathirajuFormer Employee
From a high level,
use group by N with 0 documents, combine them into an array (group)
group.toString().split(‘,’)
- SurendarContributor
I have applied the same logic but getting error like below group itself undefined.
- nganapathirajuFormer Employee
Did you use the group by N before this?
Also can you try with null safe access and see what you get?