GraphQL Resolvers | GraphQL Course For Beginners Ep. 4

Поділитися
Вставка
  • Опубліковано 26 гру 2024

КОМЕНТАРІ • 75

  • @amonechoes9181
    @amonechoes9181 Рік тому +6

    This is the most underrated GraphQL tutorial. The explanation is so pure and perfect. I would recommend this GraphQL series to everyone who is learning GraphQL. I recently found about this channel, and every video I watch is amazing and so easy to understand. Keep up the good work.

  • @talhacoder5084
    @talhacoder5084 2 роки тому +8

    Bro even though views are not great and you know it and you still made such an amazing series, Respect!

    • @PedroTechnologies
      @PedroTechnologies  2 роки тому +4

      This makes me happy! A lot of my viewers are saying this and it makes me glad cause this was my goal with this series :)

  • @ViktorNegan
    @ViktorNegan Рік тому

    Watching this is 2023 because my new project needed me to learn this
    The project got scrapped but I am determined to learn this amazing content and you are such a brilliant tutor. Thank you for this series Pedro.

  • @CuriousAnonDev
    @CuriousAnonDev 2 роки тому

    Less views != Low Quality
    I am glad that you made this series cause you love Graphql and didn't gave up cause of less views. You made me fall in love with grahql, even after watching several videos I was unable to understand how all this works. Watching your series helped me understand in one go. You are awesome bro!
    Thanks for this!! Insane quality lectures!

  • @aglowkeys
    @aglowkeys 3 роки тому +4

    Hello Pedro! Thank you for another great video, can't wait to see what comes next! I feel so motivated to start creating stuff with gql!

  • @MalikEl-Ekkawi
    @MalikEl-Ekkawi Рік тому

    Man you had 20k subscribers 1 year ago. HUGE IMPROVMENT WELL DONE!!!!

  • @lucaliebenberg8103
    @lucaliebenberg8103 2 роки тому

    Have a college project where we need to implement GraphQL. This course is making the whole process super easy. Great work

  • @googlemani
    @googlemani Рік тому +1

    Good series on GraphQL. Concepts are very well explained. I enjoyed the content.

  • @racerten4481
    @racerten4481 Рік тому

    Even if the views are not ideal, this series has been VERY helpful. Thank you for taking the time to make it

  • @habibsellami2578
    @habibsellami2578 2 роки тому

    Thanks for the whole series my man! hope it gets you the views and visibility it deserves!

  • @Prince_515
    @Prince_515 2 роки тому +2

    Course is very well planned and detailed. Really appreciate the content!

  • @codingispower1816
    @codingispower1816 2 роки тому +1

    I love this series and it's needed. I want to learn graphql and your videos are helping me learn it!

  • @kennethmatovu4487
    @kennethmatovu4487 2 роки тому

    This series is a GAME CHANGER! Keep on, keeping on.

  • @simonmassey8850
    @simonmassey8850 2 роки тому +1

    Thanks

  • @ankansharma4897
    @ankansharma4897 3 роки тому

    Dude, this series is too good and detailed. And also it's recent so that's a plus. Thanks for the series

  • @omaralazzawi5305
    @omaralazzawi5305 3 роки тому +1

    Hello Pedro! I just would like to ask in 31:00 min why we didn't add the User inside the Query why did we write it outside the Query? I just didn't get it, and thanks a lot for your amazing explain.

    • @PedroTechnologies
      @PedroTechnologies  3 роки тому +1

      Hey Omar! So, whenever you have a type, that has fields that return non scalar values (types u created like User and Movies) you have to write a resolver for it. So there is a type Query which has a field called users that returns a value of type [User!]! Since the return type of this field is not a scalar type, we must write a resolver for the field users inside of the Query object. Similarly, the User type has a field called favoriteMovies which returns a Movie type so we need to write a separate resolver for that.

    • @omaralazzawi5305
      @omaralazzawi5305 3 роки тому

      @@PedroTechnologies Thanks for the explanation man I got it 😊

  • @dsouzaeldric
    @dsouzaeldric 2 роки тому

    Great course, love the resolvers, especially the favoritesMovies part, its fantastic.

  • @Lachezariii
    @Lachezariii Рік тому

    I love what you are doing and thank you for this course! This course was exactly what I needed! Stay healthy and keep up the good work! God bless!

  • @sheikhwajeeh9753
    @sheikhwajeeh9753 3 роки тому

    Great work, leaning GraphQL alongside you and polishing my skills ✌

  • @Aakash101D
    @Aakash101D 2 роки тому +1

    Thank you for posting these video series. Its really helping me a lot in my work. :)

  • @vishalthapa3101
    @vishalthapa3101 2 роки тому +1

    Awesome video and loving it !!

  • @cassiking2419
    @cassiking2419 3 роки тому

    Pedro, super well organized and explained tutorial!! thank you

  • @abayomifafowora439
    @abayomifafowora439 Рік тому

    Thank you for this amazing video... I have a question please
    Do we have to use resolvers everything in querying the APIs or a resolver based code would have be written or predefined in the database

  • @Nnadroj
    @Nnadroj 2 роки тому

    I have been following the course since the beginning but I have an error I can't correct when launching the getMovie request:
    "errors": [
    {
    "message": "Cannot return null for non-nullable field Movie.yearOfPlublication.",
    "locations": [
    {
    "line": 6,
    "column": 5
    }
    ],
    "path": [
    "movie",
    "yearOfPlublication"
    ],
    "extensions": {
    "code": "INTERNAL_SERVER_ERROR",
    Can you help me ?

  • @gn018681442
    @gn018681442 3 роки тому

    looking forward to the next ep! Thanks for sharing!

  • @tkchannel5856
    @tkchannel5856 Рік тому

    Really cool course! The only thing I don't dig yet is the usage of lodash for standard JS functions

  • @devesh9356
    @devesh9356 2 роки тому

    Hey Pedro, you're doing an amazing work! I've always appreciated your content and learnt a lot from them! Thank you very much :)

  • @maso4u
    @maso4u Рік тому

    I've learnt so much from this series

  • @masterchief5437
    @masterchief5437 5 місяців тому

    Thanks mate I got a new job and the tech stack involves graphql!

  • @pavannannapaneni7803
    @pavannannapaneni7803 2 роки тому

    Great tutorial. Thanks!! QQ, quick question, will it work without resolvers defined? is there a default resolver created by apollo if resolvers are not defined?

  • @enriquecordero6163
    @enriquecordero6163 3 роки тому

    Thanks Pedro , waiting for typegraphq! and the next ep

  • @deZOO77
    @deZOO77 2 роки тому

    Great series, man! I appreciate your work

  • @priteshsingh299
    @priteshsingh299 Рік тому

    Thanks for the detailed explanation. Love from Nepal.

  • @SantosEnoque
    @SantosEnoque 2 роки тому +1

    Obrigado Pedro!

  • @ayushyt918
    @ayushyt918 2 роки тому

    Thank you Pedro for teaching GraphQL

  • @kalpanagupta6166
    @kalpanagupta6166 Рік тому +1

    I just feel how unfair this world is. I have seen many useless content creators have millions of subscribers whereas content creators, providing real value has few thousand subscribers

  • @mitchellhogle3763
    @mitchellhogle3763 2 роки тому

    thanks for this tutorial series, its been very helpful!

  •  3 роки тому

    Keep the good work moving bro

  • @NarekHovhannisyan-p8t
    @NarekHovhannisyan-p8t 2 роки тому +1

    the best courses, thanks!!

  • @Victor-wh9bs
    @Victor-wh9bs 2 роки тому

    Great Video

  • @mustaneerhaider515
    @mustaneerhaider515 2 роки тому

    it would be appreciated if you can make video on how to use typegraphql to create a graphql api and maybe show building a todolist api with it just the backend part of it.

  • @gagan8158
    @gagan8158 3 роки тому

    Hi.. can you explain the difference between apollo-server and apollo-server-express

  • @emmanuelamodu2390
    @emmanuelamodu2390 Рік тому +1

    Thanks for this Pedro

  • @cardosoexotics
    @cardosoexotics 8 місяців тому

    Grande Pedro🙏🏼🙏🏼

  • @alstn113
    @alstn113 3 роки тому +2

    i always grateful to you

  • @abhaytiwari6411
    @abhaytiwari6411 3 роки тому +1

    We'll done 👍👍👍

  • @alexcrudu6183
    @alexcrudu6183 Рік тому

    Great explanation!

  • @vishnudas4995
    @vishnudas4995 3 роки тому

    KEEP GOING Pedro 👌

  • @ботур8808
    @ботур8808 2 роки тому

    Great tutorial, thanks.

  • @Master-sy8si
    @Master-sy8si 2 роки тому

    Thanks a lot for this course!!

  • @wandersonsousa1891
    @wandersonsousa1891 2 роки тому

    Valeu, Pedro !

  • @bemigho
    @bemigho Рік тому

    There was a mistake. And I had to think about it for an hour. The "isInTheaters" was spelled "isInTheatres" by me. I suppose that was a reflex.

  • @taniakedrova
    @taniakedrova 2 роки тому

    Thanks for this video!

  • @jasonhackson2805
    @jasonhackson2805 3 роки тому +2

    please can you make single and multiple uploads?

    • @PedroTechnologies
      @PedroTechnologies  3 роки тому

      What do you mean? Like upload the series as one video as well?

    • @jasonhackson2805
      @jasonhackson2805 3 роки тому

      @@PedroTechnologies No please, sorry for not clarifying, actually I want to know how to make uploads using apollo server. i am working on a project and i am unable to get uploads to work. i am trying to do multiple uploads. i was hoping you could do a small video on that. it can be part of series as it progresses. But for now, I was hoping you could do something like that. it can be a separate video for now. will be of great help to me. I have seen videos but none seem to touch on that aspect.

    • @PedroTechnologies
      @PedroTechnologies  3 роки тому

      @@jasonhackson2805 No worries hahaha you mean upload images? Or you mean just uploading something to a database?

    • @jasonhackson2805
      @jasonhackson2805 3 роки тому +1

      @@PedroTechnologies images and videos, talking of database, i mostly just save the file to an uploaded folder and just save the path to the database. will love to see that also if you will. Thanks.

  • @AnkitKumar-kq1ex
    @AnkitKumar-kq1ex 2 роки тому

    this is just best

  • @DuyTran-ss4lu
    @DuyTran-ss4lu 3 роки тому

    Awesome

  • @furkan3592
    @furkan3592 2 роки тому

    Appreciated!

  • @timzeynalov3537
    @timzeynalov3537 3 роки тому

    coo coo coooool

  • @SMITSHINGALA
    @SMITSHINGALA Рік тому

    nice :-)

  • @GwjwiFshs
    @GwjwiFshs 4 місяці тому

    Johnson Lisa Perez Carol Anderson Richard

  • @chetanpl
    @chetanpl 3 роки тому

    I made dislike because you deleted my all queries.

  • @ThatBigGuyAl
    @ThatBigGuyAl 22 дні тому

    This is awesome. Thank you.