Pagination

To GET entity data in a paginated way

This API is extremely useful when you have entities with a lot of records and you want to retrive data in batch, maybe with filters or sorters.

Request

Endpoint

GET <base_url>/data/{entity}?start={start}&limit={limit}

{entity} is the Entity name according to the name provided in the schema

{limit} is the max records returned from the api

{start} you can control when to start to read

With a combination of start and limit you can navigate the entity with a pagination strategy where the limit parameter is the page size and the start is used to skip already read records.

Last updated