I found that after upgrading to version 4.19, there was no more @odata.nextLink in the AdditionalData property of the class GraphServiceUsersCollectionResponse, even when the NextPageRequest had an instance to the next page.
I found a commit that introduced the property:
[JsonPropertyName("@odata.nextLink")] public string NextLink { get; set; }
Capturing the odata.nextLink in the above property removes it from:
[JsonExtensionData] public IDictionary<string, object> AdditionalData { get; set; }
Did you guys miss this from the Release Notes?, or am I missing something?
Thanks in advance
I found that after upgrading to version 4.19, there was no more @odata.nextLink in the AdditionalData property of the class GraphServiceUsersCollectionResponse, even when the NextPageRequest had an instance to the next page.
I found a commit that introduced the property:
[JsonPropertyName("@odata.nextLink")] public string NextLink { get; set; }Capturing the
odata.nextLinkin the above property removes it from:[JsonExtensionData] public IDictionary<string, object> AdditionalData { get; set; }Did you guys miss this from the Release Notes?, or am I missing something?
Thanks in advance