8000 FIO-9841: remove pipes from countQuery pipeline by ZenMasterJacob20011 · Pull Request #1977 · formio/formio · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

FIO-9841: remove pipes from countQuery pipeline #1977

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/actions/properties/reference.js
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,9 @@ module.exports = (router) => {
return buildPipeline(component, path, req, res).then((subpipe) => {
let pipeline = req.modelQuery.pipeline || [];
pipeline = pipeline.concat(subpipe);
req.countQuery.pipeline = req.modelQuery.pipeline = pipeline;
req.modelQuery.pipeline = pipeline;
// The pipeline for references is not needed to get the count of documents
req.countQuery.pipeline = req.countQuery.pipeline || [];
});
case 'afterIndex': {
const form = await router.formio.cache.loadForm(req, null, formId);
Expand Down
0