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
When a query returns a large result set the browser can break - presumably runs out of memory.
Is it possible to limit the amount of returned data accepted to prevent this?
The text was updated successfully, but these errors were encountered:
Superagent now supports limiting the response size. We could limit this in JS to be, for example, 50mb. ladjs/superagent@946e28d
Sorry, something went wrong.
Additionally possible to truncate the results based on an arbitrary results limit. while i < 500 for example
while i < 500
No branches or pull requests
When a query returns a large result set the browser can break - presumably runs out of memory.
Is it possible to limit the amount of returned data accepted to prevent this?
The text was updated successfully, but these errors were encountered: