florian-baumann / reverie

platform to exchange, develop and bring ideas to life together
0 stars 0 forks source link

server giving only relevand infos back #47

Open florian-baumann opened 3 years ago

florian-baumann commented 3 years ago

aggregation pipelinging https://dev.to/tushark1/mongodb-aggregation-pipeline-stages-to-the-rescue-11am https://dzone.com/articles/mongodb-pipelines-with-examples

not:

florian-baumann commented 3 years ago

Tutorial.paginate(condition, { offset, limit }) .then((data) => { res.send({ totalItems: data.totalDocs, tutorials: data.docs, totalPages: data.totalPages, currentPage: data.page - 1, }); }) .catch((err) => { res.status(500).send({ message: err.message || "Some error occurred while retrieving tutorials.", }); });

florian-baumann commented 3 years ago