Get EXACTLY what you want from your APIs: How to use GraphQL with Spring Boot

Sdílet
Vložit
  • čas přidán 7. 09. 2024

Komentáře • 8

  • @mrpunch_777_
    @mrpunch_777_ Před rokem

    Great video! I'm glad to see another talented software developer sharing his knowledge!

  • @JordanKimsey
    @JordanKimsey Před rokem

    Great video! It was very informative and straight to the point. I have a project at work starting next week using GraphQL with spring boot, so your video came at the perfect time! Keep up the awesome content.

  • @yahiaazil9980
    @yahiaazil9980 Před 12 dny

    i wish i can give you 1000 likes at a time

  • @Porschepatrolman
    @Porschepatrolman Před rokem

    it also would be really important to mention how you would achieve to solve the over and underfetching problem
    which means that you only query the data you select in the query like in your example just isbn and author and that the other columns are ignored in the resulting sql statement

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

    If you remove some fields from the graphQL query @9:12, do you still execute the full flown SQL select statement in the database? In case yes, you are effectively just saving a few bytes over Http, but the database query and the object saved in memory are still the same.
    Would be nice if graphQL library would be capable of transforming a given graphQL query into a proper SQL statement.

  • @___vandanagupta___
    @___vandanagupta___ Před rokem

    Awesome content!

  • @farjallahhaythem5675
    @farjallahhaythem5675 Před rokem

    great content

  • @rydmerlin
    @rydmerlin Před rokem

    As I’m watching this I’m asking myself is there anything that generates graphql schema from existing model definitions? Why are you using Iterable and not List as your return type ? Why can’t you rely on spring boot data.sql and schema.sql to get the db setup?