We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58a547c commit 7e66adeCopy full SHA for 7e66ade
docs/upgrade-to-v3.md
@@ -178,7 +178,7 @@ The object model for JSON batching has been improved to provide a cleaner API su
178
```Java
179
final BatchRequestContent batchRequestContent = new BatchRequestContent();
180
final String meGetId = batchRequestContent.addbatchRequestStep(graphClient.me().buildRequest().getHttpRequest());
181
- final BatchResponseContent batchResponseContent = graphClient.batch().buildRequest().post(graphClient);
+ final BatchResponseContent batchResponseContent = graphClient.batch().buildRequest().post(batchRequestContent);
182
final User me = batchResponseContent.getResponseById(meGetId).getDeserializedBody(User.class);
183
```
184
0 commit comments