Why You Should Switch to GraphQL for FASTER Data Fetching

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

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

  • @allanbengco670
    @allanbengco670 ปีที่แล้ว +2

    I initially consider myself mostly as a frontend developer. But after learning GraphQL, I've managed to shorten the learning gap between frontend and backend, enabling me to become full-stack. I still do REST projects from time to time, but GraphQL is the API I always go back to when I am given free hand to choose.

  • @brijenmakwana2040
    @brijenmakwana2040 ปีที่แล้ว +3

    Both have their pros and cons. GraphQL is good but that doesn't mean we should stop using rest.

  • @vladyslavpetrykov3031
    @vladyslavpetrykov3031 ปีที่แล้ว +2

    clearly explained 💯 Waiting for a video on how to integrate GraphQL on top of existing REST API 👨‍🏫😍

  • @walinkeio
    @walinkeio ปีที่แล้ว

    Bon contenu, et beau travail de montage c'est agréable à regarder :)

  • @AntrikshSingh-q5c
    @AntrikshSingh-q5c ปีที่แล้ว

    best video i have seen on GraphQL !!

  • @amitjohn6532
    @amitjohn6532 ปีที่แล้ว

    I want to ask you one question is React native still a good option to learn because Facebook itself is not using react native
    Just asking and what's the future hold for react native and
    Also for React.
    Yes next js expo etd etc stuff but i only want to know about the future holds for react native and react js
    Will there be react 19 in future?

  • @andrewnguemnang2757
    @andrewnguemnang2757 ปีที่แล้ว +1

    Rest api with prisma can solve Many Problems

  • @AsifSaifuddinAuvipy
    @AsifSaifuddinAuvipy ปีที่แล้ว

    Use JSON:API 1.1 with REST to make it Graph enabled Hyper media driven RESTful API which are great or even better in some case then graphql

  • @develop-with-faizan
    @develop-with-faizan ปีที่แล้ว

    does graphql removes the need for redux ? or should i use redux with graphql ?

    • @notjustdev
      @notjustdev  ปีที่แล้ว +2

      If you have complex state management requirements beyond just data fetching, you may choose to use Redux alongside GraphQL. Redux can be used to manage local application state, handle UI-related state changes, or manage non-GraphQL-related data. You can use GraphQL to fetch and update data, and Redux to manage other parts of your application state.

  • @andrewnguemnang2757
    @andrewnguemnang2757 ปีที่แล้ว

    Is possible to use graphql at the top of Rest api for query?

    • @notjustdev
      @notjustdev  ปีที่แล้ว

      Yes, you can easily do that using StepZen. Check out this tutorial for more details: th-cam.com/users/liveiwgp777Mi54?feature=share

  • @vitorpeixoto2324
    @vitorpeixoto2324 ปีที่แล้ว

    Nice edit, Vadim! Thanks for the video!

  • @SuperYoda7
    @SuperYoda7 ปีที่แล้ว

    could you please do some tutorial using trpc and react-native? I would love to see that!

  • @davduran9858
    @davduran9858 ปีที่แล้ว

    And what about the future of these technologies ?

  • @FaysalBDev
    @FaysalBDev ปีที่แล้ว +1

    nice one, can you give us a tutorial of GraphQL

    • @notjustdev
      @notjustdev  ปีที่แล้ว

      Thanks. Check out this one: th-cam.com/users/liveiwgp777Mi54?feature=share

  • @shynggysumbetov4351
    @shynggysumbetov4351 ปีที่แล้ว

    Cool new style of video montage 👍🏽 thank u for brief explanation

  • @saulotarsobc
    @saulotarsobc 7 หลายเดือนก่อน

    10:58 nao sabia que o Paul 'Cabanis' era web developer kkkk

  • @ThomazMartinez
    @ThomazMartinez ปีที่แล้ว

    Nieko gero tas GraphQL daug ka su rest irgi galim padaryt, didziausia beda su G kai teko dirbti tai BE darbai daug reikejo jo

  • @manishgonekar5831
    @manishgonekar5831 ปีที่แล้ว

    do a tut on bluetooth thermal printer

  • @alexkey9372
    @alexkey9372 ปีที่แล้ว

    As someone who used both extensively, my advise is DO NOT use graphql if you want caching. It's a mess.

    • @notjustdev
      @notjustdev  ปีที่แล้ว

      What client library have you used?

    • @alexkey9372
      @alexkey9372 ปีที่แล้ว

      @@notjustdev All of them bro urql, apollo-client and others. It's all clustered when it comes to caching due to the fact that rest api follows the http protocols and all graphql requests are all POST. So with graphql to achieve the same, you need to do some hacking/amendments which honestly is not worth the time investment. I ended up using fastly edge caching but is really expensive. Used stellate caching in the beginning but switched as it had even more limitations.

  • @usmanmarkaz
    @usmanmarkaz ปีที่แล้ว

    make tutorial on GraphQL and How we make app with graphQl

    • @notjustdev
      @notjustdev  ปีที่แล้ว +1

      We have a few tutorials on GraphQL. Check them out on our channel.
      🔥 Build a Books App with React Native and GraphQL API ➡ th-cam.com/users/live-qAhg4EDIwQ
      🔥 Build a StackOverflow Clone with React Native and GraphQL API ➡ th-cam.com/users/liveiwgp777Mi54

  • @jopadjr
    @jopadjr ปีที่แล้ว

    136th...Thanks

  • @-EgoSerg-
    @-EgoSerg- ปีที่แล้ว +3

    "31 API calls" for getting data about author, likes, comments....
    ahhhh.
    If you will did it.
    I have really bad news for you.
    I think you don't know hot to work relation databases or maybe you don't know how to correct create data structure for DB.

    • @notjustdev
      @notjustdev  ปีที่แล้ว

      Of course, you can adjust your REST api to return all of this data in the same query, and that would be a smart thing to do. You will do it for your main queries, but not for all the queries your app will make. So, in the end, you will either over fetch or under-fetch.

    • @-EgoSerg-
      @-EgoSerg- ปีที่แล้ว

      @@notjustdev
      And i'm sure you know thet we can setup REST and we can also set what data we want to get.
      Ofcourse GraphQL is intresting solution and sometime it is easy to use, but not all time.
      But in any case, thank you for your job.
      I like to watch your videos

  • @finitoon
    @finitoon ปีที่แล้ว

    Oanda is rest api

  • @saulotarsobc
    @saulotarsobc 7 หลายเดือนก่อน

    8:56 😂😂😂😂😂😂😂😂

  • @JJ-Dynamiteo
    @JJ-Dynamiteo ปีที่แล้ว

    tRPC

  • @kookianneeta
    @kookianneeta ปีที่แล้ว

    tmzluv- kukiana8