Dataverse commonly returns paged results.
Large result sets should be processed page by page.
Look for the @odata.nextLink value in the response.
- do not assume all records return in one call
- follow next links until complete
- design integrations to resume safely
- log counts and progress for large jobs
For practical pagination loop examples in code, see: