Is there any way I can combine multiple rest requests in single http call using helidon? Something similar to below.
https://learn.microsoft.com/en-us/graph/json-batching
I tried doing in similar way as mentioned in above doc but getting 400. Below is my json format.
"requests": [
{
"id": "1",
"method": "GET",
"url": "/parent/123"
},
{
"id": "2",
"method": "GET",
"url": "/parent/123/child/availableChildRecords"
},
{
"headers": {
"Content-Type": "application/json"
}
}
]
} ```