This is my data.
[
{
"author":
{
"id":"101",
"label:"abc"
},
"books":
{
"id":"1"
}
},
{
"author":
{
"id":"101",
"label:"abc"
},
"books":
{
"id":"2"
}
}
]
In the above array contains list of objects, first object first property and second object first property values are same any time, but remaining properties values are different from every time. so different properties values are push into one array like , i want to get output like this
Output:-
[
{
"author":
{
"id":"101",
"label:"abc",
"books":[
{"id":"1"},
{"id":"2"}
]
}
}
]