Sir this series is fantastic. Please don't get demotivated if there are less views. Keep continuing it
@HiteshCodeLab Жыл бұрын
I will try my best
@vaibhavdani44707 ай бұрын
Legends doesn't care about views. They simply do their Job at its best !!
@samirandas83882 ай бұрын
In my internship, my team lead told me that we are going to use the aggregation pipeline. Thanks, sir, for this resource.
@khushaldhale1788 Жыл бұрын
Best Series for Aggregation ,Thank You Hitesh Sir
@tuhinghosh97375 ай бұрын
Confused when watch this for the first time, after watching it twice now everything is clear ❤
@shubhamrathod924910 ай бұрын
Yes I'm enjoying this scenario based learning. Thank you for the efforts!
@AdityaZomАй бұрын
Love you so much bro, absouletly loving the series
@MdShihabUddin-dh5vc Жыл бұрын
Thanks everything ❤️, Not stop this type of tutorial. We need this type of tutorial more.
@HiteshCodeLab Жыл бұрын
Thank you, I will
@ArihantJain-h3o Жыл бұрын
Seriously this series is truly helpful great content!
@RahulJhaJourney6 ай бұрын
Thank you for making this series.
@HiteshCodeLab6 ай бұрын
Glad you enjoy it!
@anandshinde035810 ай бұрын
Thank you sir for best series ❤❤❤❤❤
@Solo_playz9 ай бұрын
That's very deep 😮 Thank you sir for such an informative and deeply concentrated video on Mongo aggregations ❤❤
@amankch Жыл бұрын
Awesome and engaging series.
@maximus-the-merciful2 күн бұрын
Hi! Great series. Like!! Subscribed a long time ago.
@Rahul-jo1mp8 ай бұрын
Landed here just after completing "Chai-aur-Backend" Series
@amitkumargouda1768 Жыл бұрын
Scenarios-based learning is awesome...Easy to grasp
@bytequest1552 Жыл бұрын
Your intutive and application based way of teaching inspires me, great series. Just one question that I have, I feel strong connections between sql queries and aggregation pipelines, I see that they do similar work but, for different types of DBMS
@ridamsinghal1073 Жыл бұрын
Sir, this video really helps me to make my hold on MongoDB aggregation pipeline stronger. It also helps me in your video on Learn MongoDB aggregation on chai aur code. Thank you sir for this.
@HiteshCodeLab Жыл бұрын
Glad it helped!
@varunraj1823 Жыл бұрын
Thank you for the amazing series sir
@HiteshCodeLab Жыл бұрын
Most welcome!
@hussainsharif118623 күн бұрын
13:40 I do njoyed a lot sir
@asmittyagi62509 ай бұрын
Merci, monsieur.
@ujjwaldhiman7129 Жыл бұрын
Great series as told by sir only for target audience who knows aggregation worth❤❤❤
@CodeKiKitab11 ай бұрын
finally complete my backend knowledge with series ThankYou So much Sir
@virgarg10127 ай бұрын
Great Content !!! Loved it
@shehza-d Жыл бұрын
❤🔥Amazing way of teaching❤🔥
@usmanrangrez-cd7zj9 ай бұрын
[ { $project: { numberOfTags: { $size: "$tags" } // Add a field to each document representing the number of tags } }, { $group: { _id: null, averageTagsPerUser: { $avg: "$numberOfTags" } // Calculate the average number of tags } }, { $project: { _id:0, averageTagsPerUser:1 } } ] Another Way!
@harshgupta2752 Жыл бұрын
great series on aggregration pipeline
@HiteshCodeLab Жыл бұрын
Thanks
@DTALKS018 ай бұрын
sir you are a GOAT - greatest of all time
@vedanshbisht13097 ай бұрын
Hey hitesh great video , very in depth and useful. Just one thing how would I be using these pipelines as an API for my application ?
@munna5553 Жыл бұрын
Great class by great teacher 😊
@HiteshCodeLab Жыл бұрын
Thank you! 😃
@prateek5668 Жыл бұрын
Amazing series sir
@bonnyboben7427 Жыл бұрын
Great video sir ♥️♥️
@HiteshCodeLab Жыл бұрын
Thanks a ton
@KamalBiswal-d9m Жыл бұрын
Hi Sir please do explain the transaction in mongoodb also.
@mantragor81509 ай бұрын
Your videos are amazing..............
@sarveshgupta1826 Жыл бұрын
Sir, Can you please combine all react native course in a single video. It would be helpful to complete in one go..😅
@HiteshCodeLab Жыл бұрын
Will try
@ijasbasheer726321 күн бұрын
thanks sir
@Lguabed4 ай бұрын
Thanks you for this video. I think only it is better to use $size of array tags instead of $unwind like that { $group: { _id: null, avgtags: { $avg: { $size : "$tags"}, }, }, } it give the same result
@IshwarShelke-ep6yq8 ай бұрын
Osm osm osm...
@pushkarthedeveloper15 күн бұрын
present sirji
@Gabriel-xq6tn Жыл бұрын
Will help me on the research of mapping NoSQL to SQL
@HARSHKUMAR-g2d6u11 ай бұрын
sir aapko agar single bhi karna ho toh aap toh paath ka bhi istemaal kar sakte hai, main kar paa raha hu sir,,,sir aapne mistake kar diya tha sir aapne opening braces lagaya but close karna bhool gaya tabhi toh woh unexpected token keh raha tha
@alauddinkhan6303 Жыл бұрын
Sir, i have an account at LCO and from past few months im not able to login and access my purchased courses. i have tried to reach out to your mail but didn't get any response. please help me in logging in.
@HiteshCodeLab Жыл бұрын
Please visit homepage of website and use chat there. I am no longer owner of LCO
@HARSHKUMAR-g2d6u11 ай бұрын
LIttle bit harder but Very Good Knowledge
@ganeshghadage791213 күн бұрын
Hi Sir, Thanks for series Love it ❤❤ I have gone through the docs and I found the another possible solution for this question please check if it's correct [ { $group: { _id: null, tagAvg: { $avg: { $size: { $ifNull: ["$tags", []] } } } } } ]