Match all operators of aggregation

Sdílet
Vložit
  • čas přidán 24. 12. 2023
  • Welcome to a youtube channel dedicated to programming and coding related tutorials. We talk about tech, write code, discuss about cloud and devops. That’s what we do all day, all year. We roll out a lot of series and videos on our channel.
    All the learning resources such as code files, documentations, articles and community discussions are available on our website:
    chaicode.com/
    You can find our discord link, github link etc on the above website.
    Twitter/X link: x.com/hiteshdotcom
    Discord link: hitesh.ai/discord
    Learn React with 10 projects: • Let's learn react from...
    Learn Docker: • A practical guide on D...
    Learn Kubernetes: • Complete Kubernetes Co...
    How does a browser works: • How does a browser wor...
    How nodejs works: • How node JS works | En...
    Learn Redux-toolkit: • Learn Redux Toolkit in...
    Learn NextJS: • Nextjs Full stack course
    Learn Typescript: • Why to learn Typescript
    Learn Javascript: • Welcome to new JavaScr...
    Learn React Native: • React Native Mastery: ...
    Learn Zustand: • React state management...
    Learn Golang: • How to get started wit...
  • Zábava

Komentáře • 35

  • @user-ip1ow4of7u
    @user-ip1ow4of7u Před 7 měsíci +11

    Since I started following you, I really like that you always give importance to reading documentation
    Thats make your teaching different than other

  • @ridamsinghal1073
    @ridamsinghal1073 Před 7 měsíci +2

    Sir, your teaching style is next level.

  • @abusufyan4911
    @abusufyan4911 Před 6 měsíci +4

    i think the following is the answer for the last question:
    [
    {
    $match: {
    "company.location.country" : "USA"
    }
    },
    {
    $count: 'userCount'
    }
    ]

  • @HrishabhPatel09
    @HrishabhPatel09 Před 3 měsíci +1

    Great Work Sir

  • @aloksharma7871
    @aloksharma7871 Před 6 měsíci

    keep doing these type of videos they are worth more than going through whole tutorial 😅😅😅😅

  • @MdShihabUddin-dh5vc
    @MdShihabUddin-dh5vc Před 7 měsíci

    Thank you sir for this type of great videos

  • @-strange9363
    @-strange9363 Před 2 měsíci

    Your teaching is great❤️❤️

  • @DurgeshKumar-hx6xf
    @DurgeshKumar-hx6xf Před 7 měsíci

    Thanks for the video👍

  • @anandshinde0358
    @anandshinde0358 Před 4 měsíci +1

    Thank you so much sir ❤❤❤

  • @ichigo23984
    @ichigo23984 Před 2 měsíci +1

    3:45 Stephenson Griffith 💀💀

  • @user-ks5ch4ir4y
    @user-ks5ch4ir4y Před 4 měsíci

    Thank you so much Sir

  • @irfansaeedkhan7242
    @irfansaeedkhan7242 Před 7 měsíci

    great, thank you for that

  • @jk-sm6qr
    @jk-sm6qr Před 6 měsíci

    Thank you very much

  • @AnshumanBisoyi
    @AnshumanBisoyi Před 7 měsíci

    Not gonna watch the video now but kudos to the effort.

  • @genztechman
    @genztechman Před 15 dny

    Thanks

  • @arifurrahman5993
    @arifurrahman5993 Před 6 měsíci

    I have question it is wise to install mongo db in same aws or use mongodb own service. Which one is cost effective

  • @rishiraj2548
    @rishiraj2548 Před 7 měsíci

    👍👍

  • @Nitesh_Saini_
    @Nitesh_Saini_ Před 7 měsíci +1

    guruji viewer of chai-aur-backend

  • @anwarhaque7485
    @anwarhaque7485 Před 7 měsíci

    Countdown 🎉

  • @Sakin_Islam
    @Sakin_Islam Před 7 měsíci

  • @pro-ik4rw
    @pro-ik4rw Před 15 dny

    boom💥

  • @fitnessbyatechie6677
    @fitnessbyatechie6677 Před 7 měsíci

    Sir,learncode online is not available

  • @r2verse2025
    @r2verse2025 Před 7 měsíci

    what is the name of your online class website?

  • @sam_sharma24
    @sam_sharma24 Před měsícem

    goldmine series

  • @mohitshaw698
    @mohitshaw698 Před 4 měsíci

    Done

  • @leeladharsuthar2152
    @leeladharsuthar2152 Před 7 měsíci

    contributing for 'comment target'

  • @musiclovrrap862
    @musiclovrrap862 Před 7 měsíci

    Bhaiya I want to ask a question regarding interviews, many times we are asked to describe the architecture of a technology, please tell us what should be our answer ❤

  • @Shivakumartambadi858
    @Shivakumartambadi858 Před 7 měsíci

    Hi sir

  • @bishtbeat
    @bishtbeat Před 3 měsíci

    14:36
    find user who have both enim
    I solve it this way. Is it the incorrect way?
    [
    {
    $match: {
    $and:[{"tags":"enim"},{"tags":"id"}]
    }
    },
    {
    $project: {
    name:1,
    tags:1,
    }
    }
    ]

    • @prabhatdeshmukh9592
      @prabhatdeshmukh9592 Před 3 měsíci +1

      I did it in the same way and got the same output so I guess it is correct

  • @tasnimalam6881
    @tasnimalam6881 Před 3 měsíci

    🖤🖤🤍🤍

  • @SabinPoudel-iw2rf
    @SabinPoudel-iw2rf Před 19 dny

    Listing all comapny located in USA and its count:
    [
    {
    $match: {
    "company.location.country":"USA"
    }
    },
    {
    $addFields: {
    "userName": "$name"
    }
    },
    {
    $project: {
    "_id":0,
    "userName":1
    }
    },
    {
    $count: 'noOfUsers'
    }
    ]