Explanation: I have to arrays TV and values I want to merge as one array in side the object. TV_values will be the output as one array.
{
"TV":[
{
"T":"2018-05-05T09:00:00.000Z",
"V":1.3
},
{
"T":"2018-05-05T09:00:00.000Z",
"V":2.21
}
],
"values":[
100,
200
]
}
Expected output document
{
"TV_values":[
{
"T":"2018-05-05T09:00:00.000Z",
"date":2018-05-05,
"hour": 09,
"V":1.3,
"values":100
},
{
"T":"2018-05-05T09:00:00.000Z",
"date":2018-05-05,
"hour": 09,
"V":2.21,
"values":200
}
]
}