-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
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
Lucene Query search result limited 10 records #16779
Comments
Thank you for submitting your first issue, awesome! 🚀 We're thrilled to receive your input. If you haven't completed the template yet, please take a moment to do so. This ensures that we fully understand your feature request or bug report. On what happens next, see the docs. If you like Orchard Core, please star our repo and join our community channels. |
10 is the default. You need to specify the {
"query": {
"match_all": { }
},
"size": 20
} So, this is not a bug. Do you find anything can be improved to make this better discoverable? |
It seems that this issue didn't really move for quite a while despite us asking the author for further feedback. Is this something you'd like to revisit any time soon or should we close? Please reply. |
Thanks so much. If that is, could you please update the default query body with the default size of 10 when the user click the "Match All query" link? I think that more makes sense. Thanks. :) |
Sure. So the task here is to update the default "Match All query" to the below one, making it apparent that there's a limit: {
"query": {
"match_all": { }
},
"size": 10
} |
This isn't completed. |
We triaged this issue and set the milestone according to the priority we think is appropriate (see the docs on how we triage and prioritize issues). This indicates when the core team may start working on it. However, if you'd like to contribute, we'd warmly welcome you to do that anytime. See our guide on contributions here. |
Describe the bug
In the Lucene Query, if I run the match all and the result only displays 10 records the actual results count is 21.
Orchard Core version
1.8.4
Add the version of the Orchard Core NuGet packages you use, or the commit hash if you can reproduce this with the source code.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
A clear and concise description of what you expected to happen.
Logs and screenshots
If applicable, add log files, browser console logs, and screenshots (or screen recording videos) to help explain your problem.
The text was updated successfully, but these errors were encountered: