I'm using the following code
const users: MSGraphClient = this.context.serviceScope.consume(MSGraphClient.serviceKey);
users
.api("/users")
.select("displayName,mobilePhone,mail,photo,department,jobTitle,mailNickname,loginName")
.top(10)
.get((error, response: any, rawResponse?: any) => {
Since I'm using .top(10) and have more user than 10 I automatic get @odata.nextLink and that contains the url to get the next 10 people.
More documentaion is found here
But I'm unable to find a way that I'm allowed to call/use the url.
In the documentaion it states: You can retrieve the next page of results by sending the URL value of the @odata:nextLink property to Microsoft Graph.
Can anyone tell me how I can do the above statement?