Hello @Rufeng Xu-Friedman Thank you for reaching out. When a result set spans multiple pages, Microsoft Graph returns an@odata.nextLink
property in the response that contains a URL to the next page of results . This will look like this:
You can retrieve the next page of results by sending the URL value of the @odata.nextLink property to Microsoft Graph. Depending on the API that the query is being performed against, the @odata.nextLink URL value will contain either a $skiptoken or a $skip query parameter. The URL also contains all the other query parameters present in the original request. Do not try to extract the $skiptoken or $skip value and use it in a different request.
From the documentation you shared, the Query Response contains the skiptoken
property which can be passed on to subsequent requests. In your case, the response containing the first 1000 records will contain this value that you can use to get the next page of results.
Let me know whether this helps and if you have further questions,
Diana.