
Hi @The Deep Ponkiya ,
Per my research, the graph has a limit of 100 schema extension property values allowed per resource instance. Here is the document you can check.
https://learn.microsoft.com/en-us/graph/known-issues#limit-of-100-schema-extension-property-values-allowed-per-resource-instance
If the results over 100, the response should contain a "@odata.nextLink" field which can be used to retrieve the next page of the result. An example response could be:
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#directoryObjects",
"@odata.nextLink": "https://graph.microsoft.com/v1.0/users/******@domain.com/memberOf?$top=5&$skiptoken=X%2744537074090001000000000000000014000000B2B64E48AF94EB439F56F5A33CB75C9301000000000000000000000000000017312E322E3834302E3131333535362E312E342E32333331020000000000011C7FEE5EFEFA46459248691C529273D3%27",
"value": [
{ ... }
...
]
}
You can retrieve the next page of results by sending the URL value of the @odata.nextLink property to Microsoft Graph.
I will recommend you to paging Microsoft Graph data in your app. Please refer to the following document
https://learn.microsoft.com/en-us/graph/paging
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.