GraphQL - Cursor Based Pagination
Overview
This document provides an introduction to using cursor-based pagination with our GraphQL APIs.
We will explain the concept of pagination and provide step-by-step instructions on how to implement it in your application.
What is Cursor-Based Pagination?
Cursor-based pagination is a technique used by APIs to paginate large datasets. It allows you to request subsequent pages of results by providing the last seen cursor or identifier.
Benefits of Pagination
- Reduced load on our API and servers
- Improved performance and faster response times
- Ability to handle large datasets
Steps
Troubleshooting
If you're experiencing issues with pagination, please contact our support team for assistance.
On this page
- GraphQL - Cursor Based Pagination