in jq its possible to add objects using the + operator
if you have an array
[
{
"a": "value"
},
{
"b": "value"
},
{
"c": "value"
}
]
I want to convert it into a single object { a:"value", b:"value", c:"value" } I can use the following filter .[0] + .[1] + .[2], but i want to do it for the whole array without specifying all the indexes.