Fixed Mongoose problem add delete queryObj.sort before the query = Movie.find(queryObj) it would work for someones who have the problem with this, this solve is for Mongoose 7.0 or later
Sir i want to ask, when i use queryObj as a parameter in Movie.find() method i cant sort the movie and it will return an empty object in postman. Is it not possible to have sort parameter and other parameter such as duration etc in 1 request? Im using mongoose 7.1.1 version btw
For such cases i have mentioned two solutions in the filter lecture. You can use that solution where we are removing other query parameters like sort field etc. To make the filter code work
i saw that but we want to have the logic for both implemented. So if we use the filter in the filter section does it mean that we cannot do the sorting? and otherwise?@@procademy
I'm having the same problem, all filters are working just fine but sort always returns a empty object. I have tried console.log() every step of the code and every thing seems to be working just fine. I can't figure out what is happening. If you find a fix please let me know.
I fixed it for version 7 , version 8 let query=Movie.find(queryObj); let query1=Movie.find(); if(req.query.sort){ query=query1.sort(req.query.sort); } const movies=await query;
@@abdosamy8981 Just erase queryObj from the query variable params because queryObj is giving the whole request object and not the actual query from database. Should be like this let query = Movie.find();
my sort method not works try { let queryStr=JSON.stringify(req.query); queryStr=queryStr.replace(/\b(gte|gt|lte|lt)\b/g,(match)=>`$${match}`); let queryObj=JSON.parse(queryStr);
Great content
Fixed Mongoose problem
add
delete queryObj.sort
before the
query = Movie.find(queryObj)
it would work for someones who have the problem with this, this solve is for Mongoose 7.0 or later
This is working fine now. Both filters and sorting are working together.
what is the reason?
@@midunc5317 mongoose have to do it automatically but after 7.0 you have to it manually
Good explanation
Sir i want to ask, when i use queryObj as a parameter in Movie.find() method i cant sort the movie and it will return an empty object in postman. Is it not possible to have sort parameter and other parameter such as duration etc in 1 request? Im using mongoose 7.1.1 version btw
For such cases i have mentioned two solutions in the filter lecture. You can use that solution where we are removing other query parameters like sort field etc. To make the filter code work
i saw that but we want to have the logic for both implemented. So if we use the filter in the filter section does it mean that we cannot do the sorting? and otherwise?@@procademy
Yes bro am also facing same problem
Same here. Were you able to find a solution?@@pradeepgoud1436
@@procademy but mine too is not working i use mongoose verison 8
❤❤❤
Thanks for the vedios...very informative...I am not getting search results after sorting
Response returns status as success but movies is empty.
I'm having the same problem, all filters are working just fine but sort always returns a empty object. I have tried console.log() every step of the code and every thing seems to be working just fine. I can't figure out what is happening. If you find a fix please let me know.
@@michelnunes4421 fixed it
@@awesomeguy6427 Can you share the code? How did you fix it?
,@@awesomeguy6427 how do you fix it?
I fixed it
Explanation with comments
Clean:
const filterMovie = async (req, res) => {
try {
const excludeFields = ["sort", "page", "limit", "fields"];
let queryObj = { ...req.query };
excludeFields.forEach((field) => {
delete queryObj[field];
});
let queryStr = JSON.stringify(queryObj);
queryStr = queryStr.replace(/\b(gte|gt|lte|lt)\b/g, (match) => {
return `$${match}`;
});
queryObj = JSON.parse(queryStr);
let query = Movie.find(queryObj);
if (req.query.sort) {
const sortCriteria = req.query.sort.split(",").join(" ");
query = query.sort(sortCriteria);
} else {
query = query.sort({ createdAt: -1 });
}
const movies = await query;
if (movies.length === 0) {
return res.status(404).json({
message: "No movies match your criteria!",
});
}
res.status(200).json({
status: "success",
data: {
movies,
},
});
} catch (error) {
res.status(500).json({
status: "fail",
message: error.message,
});
}
};
Check Reply for commented one
how do we implement where as type in the form then it keeps bring results of search typing words
I fixed it for version 7 , version 8
let query=Movie.find(queryObj);
let query1=Movie.find();
if(req.query.sort){
query=query1.sort(req.query.sort);
}
const movies=await query;
thanks!
Thanks you.. It working
sort not working. returning an empty movies array. Any Fix?
Are you using mongoose 7 version? Might be because of version difference.
@@procademy Yes, I'm using version 7. And I figured out what was wrong. I needed to remove the field from the queryObj before I pass it to the query.
@@abdosamy8981 can you pls tell how
@@abdosamy8981 But then filtering method dont work
Am using version 8, but sort() still returns an empty array. How so I can fix this, please?
it is returning an empty string
//It should work
let queryStr = JSON.stringify(req.query);
queryStr = queryStr.replace(/\b(gte|gt|lte|lt)\b/g, (match) => `$${match}`);
const queryObj = JSON.parse(queryStr);
// Remove 'sort' from queryObj
if(req.query.sort) {
delete queryObj.sort;
}
let query = Movie.find(queryObj);
if(req.query.sort) {
query = query.sort(req.query.sort);
}
const movies = await query;
yes sir i get error when sorting
Bro complete node js ,i think it is end to volpl😮
bro sort method is not working in my code that to everything is perfect.
I fixed it
@@mozammilahmad8431 How?
@@abdosamy8981 Just erase queryObj from the query variable params because queryObj is giving the whole request object and not the actual query from database. Should be like this let query = Movie.find();
@@csais2472 worked that worked thanks
but does it mean that we lost the abbility to find by different parameters other than sort?@@csais2472
my sort method not works
try {
let queryStr=JSON.stringify(req.query);
queryStr=queryStr.replace(/\b(gte|gt|lte|lt)\b/g,(match)=>`$${match}`);
let queryObj=JSON.parse(queryStr);
let query = Movie.find(queryObj)
if(req.query.sort){
query=query.sort(req.query.sort)
}
const movies=await query;
//THIS LOG [ ] EMPTY ARRAY
console.log(movies)
res.status(200).json({
status: "success",
length: movies.length,
data: {
movies: movies,
},
});
} catch (err) {
res.status(404).json({
status: "fail",
message: err.message,
});
}
};
Is the mongoose version which you are using is mongoose 7?
@@procademy 7.0.3
sameee
@@Miftah-Ul-Uloom help