Do the following request to the graph api, this will return the default number of items (currently 10):
GET https://graph.microsoft.com/v1.0/me/people?$filter=personType/class%20eq%20'Person'
Following the odata.NextLink property will lead to the following request being made.
GET https://graph.microsoft.com/v1.0/me/people?%24filter=personType%2fclass+eq+%27Person%27&%24skip=0
The value in the $skip parameter should now be 10, but it actually is 0
Is this intended?
Sourced from https://github.com/microsoftgraph/msgraph-sdk-dotnet/issues/1102