We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We should paginate the queries that we send to df-sql so that we are not requesting all of the data at once.
To paginate the basic query we can use the following request:
{ "query": { "round": 0 }, "sort": { "volume": -1 }, "limit": 100, "offset": 0 }
That will return the first 100 results. To request the next 100 results we have to increase the offset:
{ "query": { "round": 0 }, "sort": { "volume": -1 }, "limit": 100, "offset": 100 }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We should paginate the queries that we send to df-sql so that we are not requesting all of the data at once.
To paginate the basic query we can use the following request:
That will return the first 100 results. To request the next 100 results we have to increase the offset:
The text was updated successfully, but these errors were encountered: