09-13-2022 10:32 PM
Hi,
I have a list of JSON objects, trying to add them to an array. Not able to do so, can some help in how to do that.
Input:
[
{
“a”:“101”,
“b”:“102”,
“c”:“103”
},
{
“a”:“201”,
“b”:“202”,
“c”:“303”
},
{
“a”:“301”,
“b”:“302”,
“c”:“303”
}
]
Expected Output:
{
“values”:[
{
“a”:“101”,
“b”:“102”,
“c”:“103”
},
{
“a”:“201”,
“b”:“202”,
“c”:“303”
},
{
“a”:“301”,
“b”:“302”,
“c”:“303”
}
]
}
09-14-2022 12:14 AM
Hi @kumar25,
You can you the Group By N snap and set the Group Size to 0 and Target field to values.
09-14-2022 02:01 AM
Hi @nsingam … It worked. Thanks