Rest API #12: Add Advance Search Functionality in our Rest API

preview_player
Показать описание
😊 Become Member, get access to perks, free Source code, & more..

-------- TIMELINE------
0:00 Introduction
0:50 Name filter code
3:10 full text search functionality
5:15 Featured filter
6:00 next video update

************* 😍 Must Watch Videos For Web Development 😍 *************

Рекомендации по теме
Комментарии
Автор

Your teaching style is ultimate but sir please increase the length of videos. Thank you for amazing contents....😇

tusharadhikari
Автор

Really needed this tutorial, thank u so much

fatimaiqra
Автор

Sir please make videos on redux-saga
It will be more understanding when you will going to teach
Your all tutorials are really helpful to us

snehasadawarte
Автор

this course was superb but as a begginer i dont think last 4 video should be in this playlist

Anasjameel-ql
Автор

If we write ( ?company=apple&name=Rahul ) so kam se kam company=apple ka data show krna kaise hoga thapa bhaiya

abdur_
Автор

Waiting for image upload using multer part☺️

SachinKumar-jumf
Автор

search functionality ko aur kaise improve kar sakate hai using elastic search for system like instagram, nodejs

nikhilbhu
Автор

Sir i need help for one query.
There is one html page which require some input and submit button. On submit and i want to take post method output and display the required content from the output on web only.
Sir, I tried google but didn't success.pl help how to solve my requirement

rohitmahajan
Автор

I add this method but not working
Db.ensureIndex({name=1}, {unique=true}, {dropDups=true})

bilalumer
Автор

name filtering using $regex is not working in my case brother! what to do??

yuvrajgaonkhowa
Автор

Sir can you give me react code for this video using input-select type using axios

ZERONews
Автор

Sir pagination functionally bhi add kijiya ga please

ishtiaqueahmed
Автор

hi sir kya "i" likhne se kuch aur bhe record dega suppose iphone ki jagah instagram hai to....

AshutoshKumar-ekoy
Автор

How to remove duplicate entries from mongodb

bilalumer
Автор

Name filtering using $regex is not working please help me out
Here is the code
const Product =

const getAllProducts = async (req, res) => {
const { company, name } = req.query;
const queryObject = {};

if (company) {
queryObject.company = company;
}

if (name) {
queryObject.name = {$regex:name, $options:"i"};
}

console.log(queryObject);

const myData = await Product.find(queryObject);
res.status(200).json({ myData });
};

const getAllProductsTesting = async (req, res) => {
const myData = await

res.status(200).json({ myData });
};

module.exports = { getAllProducts, getAllProductsTesting };

krishpreet