I am using graph api to get users of an organization. To implement pagination i used $top parameter which also gave me @odata.nextLink to get next page. No I want previous page when user click on Previous button. I tried using $skip, $previous-page=true parameters but did not work. Links I have used are
Please help me to redirect to previous page.
You can get the user information for the signed-in user by replacing /users/{id | userPrincipalName} with /me .
Azure Active Directory (Azure AD) Graph is deprecated and will be retired at any time after June 30, 2023, without advance notice, as we announced in September, 2022.
This isn't supported, nor is it what paging was intended for. Pagination is a performance optimization that works by reducing the amount of data transmitted with each call to the API. It is not designed to directly back a UI.
Your app should be pulling down the data as needed and caching it. When the user moves forward, you fetch data from the API. When the user moves backward, you fetch data from your cache.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With