Hi @Deepak Sharma
This seems to be by design. For MS Graph OneNote API, using $top will not return @odata.nextLink. You need to combine $skip
with $top
to manually paginate.
https://graph.microsoft.com/beta/groups/e827f44c-4afc-44ce-b527-bebb98f4ac28/onenote/sections?$select=id&$count=true&$top=2&$skip=2
Refer to similar thread: https://learn.microsoft.com/en-us/answers/questions/1251169/pagination-on-the-onenote-graph-api-missing-@odata.
Hope this helps.
If the reply is helpful, please click Accept Answer and kindly upvote it. If you have additional questions about this answer, please click Comment.