NestJS, GraphQL & TypeORM Tutorial

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 ต.ค. 2024

ความคิดเห็น • 28

  • @fhuadbalogun2997
    @fhuadbalogun2997 วันที่ผ่านมา

    Your tutorials are very loaded. Thank you very much.

  • @bugraotken
    @bugraotken 10 หลายเดือนก่อน +5

    Hope to see more Nest.js videos Anson, welcome back, thank you!

  • @codeaperture
    @codeaperture 6 หลายเดือนก่อน +1

    Watching to the end, Happy Good Friday everyone!

  • @StoriesByDrew
    @StoriesByDrew 10 หลายเดือนก่อน +2

    Good to hear from you again Anson!

  • @avinashrvan8188
    @avinashrvan8188 6 หลายเดือนก่อน

    I needed a tutorial for this library combination, and this video was extremely helpful!! Your explanations for every single step was super clear and I cannot thank you enough for helping with my assignment!! 😄😄

  • @eshepherdsgaming
    @eshepherdsgaming 9 หลายเดือนก่อน

    Great Tutorial Anson Loved It. Keep up the good work.
    It helped me a lot for my project, and I just migrated from Node.js to Nest.js through this tutorial. It's also really helpful for beginners as well.

  • @abdullahchaniago1081
    @abdullahchaniago1081 10 หลายเดือนก่อน +1

    nice 1 anson. hope you creates more nest js mysql...........great job for teaching me.... salute from me..

    • @ansonthedev
      @ansonthedev  10 หลายเดือนก่อน +1

      Thank you. There will be more videos to come with NestJS!

  • @armful
    @armful 10 หลายเดือนก่อน +1

    would be awesome if you added bookmarks for what you're currently doing to the video timeline. great video as always

    • @ansonthedev
      @ansonthedev  10 หลายเดือนก่อน +1

      What do you mean? There are time stamps in the video.

    • @armful
      @armful 10 หลายเดือนก่อน

      @@ansonthedev you're right, i see them in the description, but not on the video timeline.

    • @ansonthedev
      @ansonthedev  10 หลายเดือนก่อน +1

      @@armful Looks like I was missing the "0:00 Intro" part so that's why they did not appear in the timeline, it's fixed now.

  • @muhamadgatotsupiadin4233
    @muhamadgatotsupiadin4233 9 หลายเดือนก่อน

    your content was amazing, I'm a bit interested Nest Js from you, btw your theme looks amazing what theme is that?

    • @ansonthedev
      @ansonthedev  9 หลายเดือนก่อน

      It's called "Horizon"

  • @myothuko6380
    @myothuko6380 10 หลายเดือนก่อน +1

    Hope to see more nest js viedos with mongo db soon

  • @obinnaezedei856
    @obinnaezedei856 9 หลายเดือนก่อน

    You have me started. Good one

  • @williamcao5139
    @williamcao5139 10 หลายเดือนก่อน

    welcome back Anson

  • @Ozan_P
    @Ozan_P 2 หลายเดือนก่อน

    Hi, I wonder how usersettings database index is the same with userid. In the previous exercise the second database index was starting from 1 and whenever you create new data it icrements. But here userId is the same as id of user table. 2:14:57

  • @prashlovessamosa
    @prashlovessamosa 10 หลายเดือนก่อน

    Thanks for sharing.

  • @mehmetilhan6083
    @mehmetilhan6083 3 หลายเดือนก่อน

    nice for beginners

  • @abdussamad0348
    @abdussamad0348 6 หลายเดือนก่อน

    Amaizng one !

  • @유동선-k1n
    @유동선-k1n 10 หลายเดือนก่อน

    thx bro!

  • @reconlx
    @reconlx 10 หลายเดือนก่อน

    anson mann

    • @ItsSkeptical
      @ItsSkeptical 10 หลายเดือนก่อน

      What happened to your own videos? :(

  • @mohammadjavan8124
    @mohammadjavan8124 9 หลายเดือนก่อน

    Super 🎉

  • @ferrywijaya6404
    @ferrywijaya6404 9 หลายเดือนก่อน

    Hello sir, may i ask how can i playground the graphql if in my model contain array.
    import { Field, ObjectType } from '@nestjs/graphql';
    @ObjectType()
    export class Sample{
    @Field({ nullable: true })
    label?: string;
    @Field(type => [Sample])
    items?: Sample[];
    }
    after i test run, error shown as :
    ...
    "errors": [
    {
    "message": "Field \"items\" of type \"[Sample!]!\" must have a selection of subfields.
    ...
    Please help sir @ansonthedev

    • @ansonthedev
      @ansonthedev  9 หลายเดือนก่อน

      When you select items, you need to also select the fields for each object in the Array.
      e.g:
      query {
      ... {
      label
      items {
      fieldOne
      fieldTwo
      ...etc
      }
      }
      }

    • @ferrywijaya6404
      @ferrywijaya6404 9 หลายเดือนก่อน

      ​@@ansonthedev thanks sir for the help🎉🎉🎉