in src/GraphService.ts [232:241]
async function processResponse(response: Response, processingQueue: any) {
if (response.ok) {
const data = await response.json();
for (const res of <BatchResponse[]>data.responses) {
processingQueue[res.id].onResolve(res);
}
} else {
throw buildErrorFromResponse(response);
}
}