Skip to content

Commit f1996ef

Browse files
authored
FIx Batching Documentation code
The code example in the Batching Documentation does not work. The batchResponse is not set in the example code.
1 parent d38a32f commit f1996ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/content/Batching.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const serialBatching = async function(elem) {
5656
let batchResponseContent = new MicrosoftGraph.BatchResponseContent(response);
5757

5858
//Getting response by id
59-
console.log(batchResponse.getResponseById(downloadId));
59+
console.log(batchResponseContent.getResponseById(downloadId));
6060

6161
//Getting all the responses
6262
console.log(batchResponseContent.getResponses());

0 commit comments

Comments
 (0)