I am trying to take the array of an ADO query and trying to add a field to it.
The main array looks something like:
{
"System.Id": 38473
"System.AssignedTo": Nick
},
{
"System.Id": 45636
"System.AssignedTo": James
},
{
"System.Id": 29596
"System.AssignedTo": Katie
},
and keeps going...
and I am trying to add:
{
"Description": "test desc."
},
{
"Description": "Plain text test"
},
{
"Description": "Random Desc."
},
and so on...
I need it to look like this:
{
"System.Id": 38473
"System.AssignedTo": Nick
"Description": "test desc."
},
{
"System.Id": 45636
"System.AssignedTo": James
"Description": "Plain text desc."
},
And so on.
I have tried to use append only but that did not give me the desired outcome. I have tried union and that didn't do what I was looking for either. Everything is in order, I just need it to be added to the main array.