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
Before we could query all the documents setting limit = 0 in our query.
Nevertheless, this line
Vulcan/packages/vulcan-core/lib/modules/containers/multi2.js
Line 50 in 3589018
const defaultInput = { limit: 20, enableTotal: true, enableCache: false, };
Is this intended to happen or just a regression ? :)
The text was updated successfully, but these errors were encountered:
Probably a regression.
We probably should test typeof foo.limit === "undefined", so both limit:null and limit:0 allow to bypass the limit.
typeof foo.limit === "undefined"
limit:null
limit:0
Sorry, something went wrong.
No branches or pull requests
Before we could query all the documents setting limit = 0 in our query.
Nevertheless, this line
Vulcan/packages/vulcan-core/lib/modules/containers/multi2.js
Line 50 in 3589018
causes limit fallback to 20 (the default value)
const defaultInput = { limit: 20, enableTotal: true, enableCache: false, };
Is this intended to happen or just a regression ? :)
The text was updated successfully, but these errors were encountered: