You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tutorial/05-add-ms-graph.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ In this exercise you will incorporate the Microsoft Graph into the application.
15
15
- The `query` method adds the `startDateTime` and `endDateTime` parameters, defining the window of time for the calendar view.
16
16
- The `select` method limits the fields returned for each events to just those the view will actually use.
17
17
- 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.
19
19
- 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.
20
20
21
21
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