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: docs/upgrade-to-v3.md
+35Lines changed: 35 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -187,6 +187,41 @@ The interface has been simplified to remove the `getRawObject` and `getSerialize
187
187
1. Replace any reference to `getRawObject` by `additionalDataManager`.
188
188
1. Replace any reference to `getSerializer` by `graphClient.getSerializer` or create a new instance of the serializer.
189
189
190
+
### Improved delta API
191
+
192
+
When using [change tracking/delta APIs](https://docs.microsoft.com/graph/delta-query-overview) Microsoft Graph provides two types of links with the response collection:
193
+
194
+
- A next link whenever there are more change results to iterate through.
195
+
- A delta link whenever there are no more change results to iterate through at this instant. This is the link your application should use to get new changes in the future.
196
+
197
+
This new version improves the Java API provided to developers.
> Note: the `DeltaCollectionPage` also offers a `getNextPage` method which simplifies iterating through results and removes the need for consumers to directly handle the next link themselves.
224
+
190
225
## Upgrade guide for non-breaking improvments
191
226
192
227
This section lists out other improvements which are not considered as breaking changes. SDK users are strongly encouraged to take advantage of those new improvements to simplify their code.
0 commit comments