Skip to content

Commit 637f2c2

Browse files
committed
Update 05-add-ms-graph.md
1 parent 8c4b8c8 commit 637f2c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tutorial/05-add-ms-graph.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ In this exercise you will incorporate the Microsoft Graph into the application.
1515
- The `query` method adds the `startDateTime` and `endDateTime` parameters, defining the window of time for the calendar view.
1616
- The `select` method limits the fields returned for each events to just those the view will actually use.
1717
- The `orderby` method sorts the results by the date and time they were created, with the most recent item being first.
18-
- The `top` method limits the results to the first 50 events.
18+
- The `top` method limits the results in a single page to 25 events.
1919
- If the response contains an `@odata.nextLink` value, indicating there are more results available, a `PageIterator` object is used to [page through the collection](https://docs.microsoft.com/graph/sdks/paging?tabs=typeScript) to get all of the results.
2020

2121
1. Create a React component to display the results of the call. Create a new file in the `./src` directory named `Calendar.tsx` and add the following code.

0 commit comments

Comments
 (0)