Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 671 Bytes

File metadata and controls

25 lines (16 loc) · 671 Bytes

Pagination

Dataverse commonly returns paged results.

Basic Guidance

Large result sets should be processed page by page.

Look for the @odata.nextLink value in the response.

Practical Advice

  • 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

Language Examples

For practical pagination loop examples in code, see: