I am Trying to make a sum in Json Array with Jolt but i did not succeess.
This is my json :
[
{
"times-entries": {
"offset": 0,
"time_entries": [
{
"hours": 1
},
{
"hours": 2
}
]
}}]
This is what I expect :
{"sum_hours" : 3}
So do you know how I can do this ?