I am using Azure AD graph api to get all users of the organization. Using following get request to get all users
https://graph.windows.net/contoso.com/users?api-version=1.6
I am able to retrieve users using paging with the help of parameter $skiptoken
Is it possible to fire multiple such GET request without using $skiptoken and each GET request will return 1000 users.
For example
GET req 1 will retrieve users from 1 to 999
GET req 2 will retrieve users from 1000 to 1999
GET req 3 will retrieve users from 2000 to 2999
In short, I want to execute those requests over multiple threads instead of going sequentially when "$skiptoken" is used.