Skip to content
This repository has been archived by the owner on May 24, 2021. It is now read-only.

paginate list results recipie #15

Open
derekeder opened this issue Feb 10, 2013 · 0 comments
Open

paginate list results recipie #15

derekeder opened this issue Feb 10, 2013 · 0 comments
Labels

Comments

@derekeder
Copy link
Owner

To get around the 500 row response limit, we could implement paging for list views.

Follow the pattern from this thread:

Basically, you would want to send a request to retrieve 500 rows at a time, using the LIMIT clause. For example:

SELECT FROM LIMIT 500

To control the pagination, add an offset. For example, the following query would show the second page of results:

SELECT FROM LIMIT 500 OFFSET 500

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

1 participant