Skip to content

Commit d66461f

Browse files
authored
Update batch-requests.md
1 parent f9f0c8f commit d66461f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

concepts/sdks/batch-requests.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The Microsoft Graph SDKs provide three classes to work with batch requests and r
2020

2121
- **BatchRequestStep** - Represents a single request (such as `GET /me`) within a batch. It enables assigning a unique identifier to the request and specifying dependencies between requests.
2222
- **BatchRequestContent** - Simplifies creating the batch request payload. It contains multiple **BatchRequestStep** objects.
23-
- **BatchResponseContent** - Simplifies parsing the response from a batch request. It provides the ability to get all responses, get a specific response by ID, and get the `@odata.nextLink` property if present.
23+
- **BatchResponseContent** - Simplifies parsing the response from a batch request. It enables you to get all responses, get a specific response by ID, and get the `@odata.nextLink` property if present.
2424

2525
### Automatic batching for request limits
2626

@@ -54,10 +54,10 @@ This example shows how to send multiple requests in a batch that are not depende
5454

5555
## Batches with dependent requests
5656

57-
This example shows how to send multiple requests in a batch that are dependent on each other. The requests will be run by the service in the order specified by the dependencies. This example adds an event with a start time during the current day to the user's calendar and gets the user's calendar view for the current day. To make sure that the calendar review returned includes the new event created, the request for the calendar view is configured as dependent on the request to add the new event. This ensures that the add event request will execute first.
57+
This example shows how to send multiple requests in a batch that are dependent on each other. The requests are run by the service in the order specified by the dependencies. This example adds an event with a start time during the current day to the user's calendar and gets the user's calendar view for the current day. To make sure that the calendar review returned includes the new event created, the request for the calendar view is configured as dependent on the request to add the new event. This ensures that the add event request runs first.
5858

5959
> [!NOTE]
60-
> If the add event request fails, the get calendar view request will fail with a `424 Failed Dependency` error.
60+
> If the add event request fails, the get calendar view request fails with a `424 Failed Dependency` error.
6161
6262
### [C#](#tab/csharp)
6363

0 commit comments

Comments
 (0)