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: graph/patterns/change-tracking.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,9 +17,9 @@ This function returns a delta payload. A delta payload consists of a collection
17
17
18
18
Annotations allow the delta payload to indicate resources or links which have been deleted. API callers are expected to differentiate resource adds from updates by interpreting the id property of the change records against the existence of resources in whatever external system is doing the processing.
19
19
20
-
The pattern requires a sequence of requests.
20
+
The pattern requires a sequence of requests on the delta function:
21
21
22
-
1. GET request on the delta function, which returns the first page of the current state of the resources that delta applies to.
22
+
1. GET request which returns the first page of the current state of the resources that delta applies to.
23
23
2.[Optionally] Further GET requests to retrieve more pages of the current state via the `@odata.nextLink` URL.
24
24
3. After some time, a GET request to see if there are new changes via the `@odata.deltaLink`URL.
25
25
4.[Optionally] GET requests to retrieve more pages of changes via the `@odata.nextLink` URL.
@@ -55,7 +55,7 @@ API consumers need guaranteed data integrity over the set of changes to Microsof
55
55
- API service MAY be able to respond to standard OData query parameters with the initial call to the delta function:
56
56
57
57
-`$select` to enforce the set of properties on which change is reported.
58
-
-`$filter` to influence the range of changes returned.
58
+
-`$filter` to influence the scope of changes returned.
59
59
-`$expand` to include linked resources with the set of changes.
60
60
-`$top` parameter to influence the size of the set of change records.
0 commit comments