From f1996efb0114526b302d6484e0f1fb98c0d10834 Mon Sep 17 00:00:00 2001 From: Abrax20 Date: Wed, 28 Aug 2019 20:15:15 +0200 Subject: [PATCH] FIx Batching Documentation code The code example in the Batching Documentation does not work. The batchResponse is not set in the example code. --- docs/content/Batching.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/Batching.md b/docs/content/Batching.md index 9c40b280d..68405ac54 100644 --- a/docs/content/Batching.md +++ b/docs/content/Batching.md @@ -56,7 +56,7 @@ const serialBatching = async function(elem) { let batchResponseContent = new MicrosoftGraph.BatchResponseContent(response); //Getting response by id - console.log(batchResponse.getResponseById(downloadId)); + console.log(batchResponseContent.getResponseById(downloadId)); //Getting all the responses console.log(batchResponseContent.getResponses());