Six Years Later, I’m Over GraphQL

  Рет қаралды 64,486

Theo - t3․gg

Theo - t3․gg

27 күн бұрын

I love GraphQL. I also regret it. I’m very thankful this blog post exists so I can talk about it more.
SOURCE
bessey.dev/blog/2024/05/24/wh...
upstash.com/blog/upstash-rate...
Check out my Twitch, Twitter, Discord more at t3.gg
S/O Ph4se0n3 for the awesome edit 🙏

Пікірлер: 203
@rthomasv3
@rthomasv3 25 күн бұрын
As a backend developer with a big focus on database, query design, and security, GraphQL has always worried me. And the more I learn about it, the more I'm glad I decided not to use it.
@armanomidi4859
@armanomidi4859 9 күн бұрын
maybe you haven't learned enough to work with GraphQL and how to optimize your queries over db
@Malix_off
@Malix_off 25 күн бұрын
So we Structure our QL now ?
@Winnetou17
@Winnetou17 25 күн бұрын
This needs more upvotes
@lbgstzockt8493
@lbgstzockt8493 24 күн бұрын
tech is cyclic, web dev double so
@SeriesFrontend
@SeriesFrontend 18 күн бұрын
Do not pronounce QL in spanish.
@O_Eduardo
@O_Eduardo 25 күн бұрын
For the majority of developers seeing this video.... just use rest, thank me later.
@hellotherenameishere
@hellotherenameishere 25 күн бұрын
Why have one API endpoint when you can have hundreds! Also, have you worked on that ticket I submitted to add a single property to your REST API? No? Man, I could’ve done this myself with GraphQL.
@O_Eduardo
@O_Eduardo 25 күн бұрын
@hellotherenameishere There're too many cons, simply don't worth it. Eventually, you'll see.
@tjtjtyjtyjt
@tjtjtyjtyjt 24 күн бұрын
@@hellotherenameishere Have you created an app with hundreds of endpoint? if not, why GraphQL? checkmate
@ian2neko
@ian2neko 24 күн бұрын
​@@O_Eduardo I saw frontend devs decided to grab all properties and use only those he/she actually need then. ummm....
@hanzo2001
@hanzo2001 25 күн бұрын
I may be misremembering but when I was first introduced to graphQL by some ex-colleagues circa 7 years ago, word on the street was that graphQL was not a replacement for your rest API. I thought it was supposed to be used on top of one or alongside it. Ignorance is bliss I suppose
@dyto2287
@dyto2287 25 күн бұрын
The initial idea for it was to make make single API composition of our multiple REST APIs. It would perform repeated calls to REST to extend data closer to backend reducing latency and allow frontend devs to select only the things they need. But of course, people started using it everywhere and now it's shit.
@TheHadrian54
@TheHadrian54 24 күн бұрын
Well, a facebook blog about the creation of GraphQL: "When we built Facebook’s mobile applications, we needed a data-fetching API powerful enough to describe all of Facebook, yet simple enough to be easy to learn and use by our product developers."
@AlexandruVoda
@AlexandruVoda 25 күн бұрын
As a database person, the fact that something called a dataloader pattern exists to soften the N+1 problem boggles the mind. We can do most things with just 1 SQL query and output it all into JSON too directly from that same query.
@brahimbenfares1464
@brahimbenfares1464 23 күн бұрын
Everyone is just afraid of rawdoggin some SQUEAL
@RaZziaN1
@RaZziaN1 25 күн бұрын
Well.. Theo is changing technologies every 3 months so no wonder..
@deadchannel8431
@deadchannel8431 25 күн бұрын
U watch the video?
@greidinger-reis
@greidinger-reis 25 күн бұрын
Where did he change anything?
@DanielBogusz
@DanielBogusz 25 күн бұрын
@@greidinger-reiseg. trpc to server components
@gamerzero6085
@gamerzero6085 25 күн бұрын
"now you're building crazy DIY rate limiters" - Dude's clearly never used any full-featured backend framework. Pretty much all of them have that for graphql
@marcuss.abildskov7175
@marcuss.abildskov7175 21 күн бұрын
Theo is a web developer. He knows nothing about software engineering.
@sbogdaniuk
@sbogdaniuk 25 күн бұрын
Our BE team: We can't in GraphQL, we will use REST. Period!
@Edwin-nl3qu
@Edwin-nl3qu 25 күн бұрын
Out all of the shitposting I've done over the years, the one tweet that got me mobbed on was basically saying exactly this back in 2022.. maybe with a little more color.
@sabiw
@sabiw 25 күн бұрын
Clickbait title, what a suprise.
@Jzhongzhi
@Jzhongzhi 25 күн бұрын
I mean it is Theo...
@gusvanwes6192
@gusvanwes6192 25 күн бұрын
I've been seeing this a lot lately at KZfaq. Not sure why it's happening
@SPAHI43
@SPAHI43 25 күн бұрын
First time?
@AndrieMC
@AndrieMC 25 күн бұрын
​@@Jzhongzhi Theos titles and thumbnails are so bad even chatgpt hates him, he sucks
@Zeragamba
@Zeragamba 25 күн бұрын
​@@gusvanwes6192 Clickbait generates more clicks. The algorithm likes more clicks. Shows more videos with clickbait.
@user-go9kj3nx4e
@user-go9kj3nx4e 25 күн бұрын
Using graphql for the last years over all our products. We can spin up new products really fast. Every developers knows how to handle things. Sure, eliminating codegen would be cool but that's not enough for me to shift to trpc.
@hungrymusicwolf
@hungrymusicwolf 25 күн бұрын
It's always fascinating at what little detail can bring significant problems later on. I guessed chat history along with chat, but when I think about it badges makes perfect sense.
@Omnifarious0
@Omnifarious0 23 күн бұрын
This fits with the paper I wrote a long time ago about why CORBA (long time ago, ugly, think binary WSDL (also a long time ago and ugly)) and other forms of RPC are a bad idea. The problem with GraphQL is that it exposes too much of your internal state to external users. In my paper I describe RPC as being about what you want the other side to do rather than the messages you want to exchange. And that's true, but the real problem there is that when giving the other side detailed instructions on what you want to do, it necessitates knowing a lot of internal details about how the other side functions. I wrote this paper in the 1990s, but you could look at it as advocating for REST APIs. Though that's a little too narrow of a reading. I intended to lump in things like SMTP as being well designed protocols. I mean, SMTP has numerous security flaws involving verifying senders, but that's not the kind of issue I was talking about.
@cyneostudio
@cyneostudio 25 күн бұрын
I'm using GraphQL in production since 5 years, it's always one of my favorite technology ❤❤
@MadsterV
@MadsterV 24 күн бұрын
What I like about GraphQL: you can track which data is being consumed, which added to tracking request source lets you track how information flows across your app, spot possible optimizations and speed up deprecation. With proper instrumentation, you'll do magic. What I don't like about GraphQL: code generation, additional load and effort, tying up all the infra to an additional standard, security complexity skyrockets. Unoptimized lookups is not a GraphQL problem, it's a design problem.
@killswitch.
@killswitch. 24 күн бұрын
19:08 Great job by your editor with the seamless transition...as I watched this on stream, it's so different I almost didn't notice
24 күн бұрын
Does TRPC make sense if we can query and mutate the data directly with server components?
@sebastianmihaiprisacariu8975
@sebastianmihaiprisacariu8975 25 күн бұрын
Would be interesting to hear your thoughts on what tRPC does better than just regular server actions.
@SonAyoD
@SonAyoD 25 күн бұрын
Everything is better with trpc
@marcuss.abildskov7175
@marcuss.abildskov7175 21 күн бұрын
trpc is a joke compared to deepkit rpc
@paxdriver
@paxdriver 7 күн бұрын
I just built my first fastapi endpoint for a react project I'm working on. I took 2 days longer than the 1 day I estimated because I felt compelled to make the json file it served an asyncio call, the fetch was through an async web worker in react, and the fson it serves updates only once per day so it is reprocessed server side to be ready and waiting as soon as it's updated. Did I go overboard or are we suggesting my anal retentive approach ought to be standard? Again, my first time, learning solo, sincerely curious. It sounds like you're suggesting I did as much as we ought to expect of backend to provide to front end.
@PhilipAlexanderHassialis
@PhilipAlexanderHassialis 25 күн бұрын
0:10 - let me fix this for you. If you have a DESIGN DOCUMENT that SPECIFIES the REST API signatures and the back / front teams are communicating, then you don't need a monorepo, you don't need the same language, you don't need anything. Just a proper Tech Lead who will OWN and ENFORCE this document and an Architect who oversees the whole thing. But I guess, having people actually talk and create design documents is too much these days, huh?
@ea_naseer
@ea_naseer 25 күн бұрын
to be honest I don't like UML
@MrLordLowbob
@MrLordLowbob 25 күн бұрын
@@ea_naseer design documents dont need to be UML though. even a swagger document can do a lot already
@blenderpanzi
@blenderpanzi 25 күн бұрын
Yeah, an up to date OpenAPI spec as the interface to program to sounds good enough for me, but then I've only ever worked in projects with two or three devs max.
@j.r.r.tolkien8724
@j.r.r.tolkien8724 25 күн бұрын
As a solo developer I approve this. LOL.
@PhilipAlexanderHassialis
@PhilipAlexanderHassialis 25 күн бұрын
@@blenderpanzi yeah, YMMV. The projects I work on (well, more or less Arch-ing on these days) have at least 7-8 devs, so I end up mostly designing, owning and augmenting the design documents along with the product owner(s). Trust me, as long as everyone comes along for the ride and understand that software engineering is NOT a democracy, it all flows swiftly and smoothly.
@MrSofazocker
@MrSofazocker 25 күн бұрын
20:49 In the php world, its common to have your endpoint for users accept query params to supplement additional fields on the request, which are themselves their own endpoints with authorization already included, (bcs they are their own seperate endpoints), but you can thus essentially make multiple requests with a single request from the client and get the combined data of both. For example, a user, and its posts. They are separate endpoints. But the user endpoint accept a param to supplement the user, data to include the users posts. Just like that. Also, rate limiting as a package lmao
@pythagoran
@pythagoran 24 күн бұрын
6 years too late... seems like someone stopped sending the cheques
@joninsley8
@joninsley8 25 күн бұрын
What about if API needs to be externally exposed for a mobile app? Can tRPC expose the endpoints?
@joegaffney8006
@joegaffney8006 25 күн бұрын
What are you thoughts on openapi specs for the contracts of rest api's?
@black-snow
@black-snow 25 күн бұрын
Errrr... Yes?
@Saeid-Za
@Saeid-Za 18 күн бұрын
Been using it for years now, I love it. Fully type safe rest APIs for any client in any language without the mumbo jumbo.
@MelroyvandenBerg
@MelroyvandenBerg 25 күн бұрын
I never liked graphql. And never will.
@yapdog
@yapdog 25 күн бұрын
Honestly, what you describe with the Twitch badges is a dev problem, not really GraphQL
@jarrodhroberson
@jarrodhroberson 25 күн бұрын
just like “every slow car handles well” “every tech works well with every trival application”
@jonathan-._.-
@jonathan-._.- 25 күн бұрын
badges are sent with the message now 🤔
@nikbl4k
@nikbl4k 25 күн бұрын
They must have scrum overlords and no waterfall
@yapdog
@yapdog 25 күн бұрын
I don't know... for the most part, it doesn't sound like GraphQL is the problem. It sounds to me like some devs don't have enough paranoia when creating APIs 🥺
@jackwright517
@jackwright517 25 күн бұрын
I've used trpc and graphql, I can't put my finger on why but I'm more comfortable using graphql and find it more enjoyable to use 🙈 Graphql provides a level of power I just love. Even for... Simple projects. 😬 That have more servers than users. 🤣 But I agree with most of your points!
@QueeeeenZ
@QueeeeenZ 25 күн бұрын
we use Nuxt for frontend and Symfony for backend and separate teams so GraphQL is really nice
@hamburger--fries
@hamburger--fries 25 күн бұрын
Same with Statamic but with Next (I honestly thought Nuxt was dead).
@hefoxed
@hefoxed 24 күн бұрын
Huh, i had heard of graphql but wasn't aware what it did. I can see why it's be useful, but the security issues and limitations just doesn't seem worth it, and I'd likely stick to rest. But I've also been coding since before rest itself was popular so I may be a bit stuck in the past. I've primarily worked in teams where everyone is full stack and so front end waiting for endpoints hasn't been an issue.
@conceptcoder
@conceptcoder 22 күн бұрын
R u using Batik, unique clothes from Indonesia? 😊
@Holobrine
@Holobrine 24 күн бұрын
Tbh front ends shouldn’t be making complex data queries, just request the component you need and get it whether it’s htmx or React server components
@ea_naseer
@ea_naseer 25 күн бұрын
is graphql a dsl?
@oneeyefpv
@oneeyefpv 25 күн бұрын
How about gRPC-web (on the client), and gRPC (on the server). The ProtoBuf compiler (protoc) has plugins for generating gRPC-web client (in JavaScript), as well as plugins for generating server side code in many languages.
@BCRooke1
@BCRooke1 25 күн бұрын
TIL about grpc-web. TBH I think most people don’t go this route because of the learning curve. But I’d agree grpc > trpc
@rerere1569
@rerere1569 25 күн бұрын
I used this on one of my previous jobs. The problem usually is that you still have quite big overhead, besides your frontend and backend you now need to maintain some sort of proxy to be able to request grpc from your browser. Ultimately it's an additional layer of abstraction and complexity, which might make debugging quite painful. Can totally see how it could be used by bigger teams tho, but we found it annoying back then
@Kevin-vw5qy
@Kevin-vw5qy 4 күн бұрын
Many companies encode their requests to binary, grpc is nice.
@steve-adams
@steve-adams 20 күн бұрын
Although GraphQL is an awesome solution where it fits, I don't often find places where it fits and if I do, I don't find cases where its advantages warrant the complexity of implementing it. This could be due to the bias caused by my level of experience and the type of work I tend to do; maybe this isn't as true in other contexts.
@05xpeter
@05xpeter 25 күн бұрын
Going from REST to graphQL made me insist that my next job absolutely needed to be in a fullstack environment with something like TRPC.
@Gordonfreems
@Gordonfreems 25 күн бұрын
Wonder what you will be “over” a few months from now, the influencer reality is so off from what devs have to work with and maintain
@1337GameDev
@1337GameDev 23 күн бұрын
10:40 -- why do they not just call the function to get badges when you change it......
@matthewbeardsley7004
@matthewbeardsley7004 20 күн бұрын
GraphQl does subscriptions with joins, can't do that with anything else I think.
@ReyhanJoseph
@ReyhanJoseph 25 күн бұрын
absolutely nobody: THEO: *AND I TOOK THAT PERSONALLY*
@lcarsos
@lcarsos 25 күн бұрын
13:37 no it's okay Theo. You're completely correct. Requiring every developer talk to every team for every graphql query they're going to make to get the green light that you won't take down the whole service absolutely does not scale. Shame on that team.
@andyjones11
@andyjones11 25 күн бұрын
Give me graphql without the nesting and I'll be happy. Client-side we get all the benefits of type-safety, code-gen and introspection. Server-side we dont have to worry about N+1's and complex schema resolution on fields existing far down on the tree of GQL nodes.
@axa993
@axa993 22 күн бұрын
Six years later I still never gave a single flying f about Graphql
@eran2670
@eran2670 25 күн бұрын
aren't we all
@capability-snob
@capability-snob 25 күн бұрын
Watching people have security problems in graphql makes me appreciate capnproto rpc even more
@xybersurfer
@xybersurfer 25 күн бұрын
from a software engineering perspective i get why you justifiably throw overboard a whole technology and have keep changing technologies, because of these problems. but from a language or technology design perspective i think it's really dissatisfying, because there are some deeper issues here that cut across the tech being used, whether it's tRPC, GraphQL, REST. especially caching issues and the N+1 problem
@Matt23488
@Matt23488 23 күн бұрын
I never even jumped on the GraphQL train. It just never made sense for me. I have always worked on relatively small teams of full-stack devs, so I have always had control over both sides of the API. And with unit testing ensuring that the two don't get out of sync, it was never worth the time to even learn GraphQL in the first place.
@VincentFulco
@VincentFulco 23 күн бұрын
I wanted to love it (on AWS) but I came to hate it and moved on.
@maykefernandesdossantos7374
@maykefernandesdossantos7374 25 күн бұрын
Wouldnt it be amazing if inside the graphql ecosystem we could create pre defined queries that could be executed by name and possibly optional arguments as well, therefore the request could be something line: { query: "query name", args: [] } This is a layer I couldn't find anywhere in the specs of the architecture, also the possibility to isolate "contexts" would be amazing, making free to custom query just part of the data not the entire schema.
@John2202W
@John2202W 25 күн бұрын
Great idea! Let’s call those predefined queries “procedures” and expose a TypeScript friendly way to invoke them remotely. We can call it a TypeScript remote procedure call or just TRPC for short!
@ChrisSkene
@ChrisSkene 25 күн бұрын
I think you're looking for persisted queries? Here is what that looks like in code: const response = await fetch(graphQlUrl, { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ documentId: 'md5-query-hash-of-query', variables: { variableOne: '', variableTwo: '', }, }), });
@maykefernandesdossantos7374
@maykefernandesdossantos7374 25 күн бұрын
@@ChrisSkene Interesting I didnt know about them
@maykefernandesdossantos7374
@maykefernandesdossantos7374 25 күн бұрын
@@John2202W I am aware that the concept of such predefined query would basically mimic a REST request, and that's is my point hahahah can't graphql just leverage some of the things trpc does? idk the architecture would need to change in order to address the problems we saw here... I just don't know how or if would be possible.
@maykefernandesdossantos7374
@maykefernandesdossantos7374 25 күн бұрын
​ @ChrisSkene That actually interesting, I didn't know about them, the concept would be similar but implemented 'natively' on the graphql architecture itself somehow, it seems that for now such implementation lives on the client side layer, Apollo has its own implementation of persistent queries, and I was wondering if that could actually become part of the grapqhl specs, a way to request predefined data ( much like rest API ) passing the name of a query, therefore making the "all you can query" style of grapqhl limited somehow because I do agree that setting authorization per field is way too cumbersome most of the time. but thanks for the tip on persisted queries I was looking for something like this!
@Grumpicles
@Grumpicles 24 күн бұрын
My one gripe is the argument right at the end about "front-end bugging back-end" in non-GraphQL APIs. I live in the SME world where we're either full-stack doing both, or, we collaborate and "bugging" people is an advantage becuse it leads to a thoughtful architecture where back-end understands how their services are actually being used. As developers we dont just "write code and call stuff". Everything is done with intent and should ve done thoughtfully.
@Thaun_
@Thaun_ 25 күн бұрын
There is currently an soon-to-be RFC that is basically POST with caching, named QUERY.
@black-snow
@black-snow 25 күн бұрын
It was a draft and it expired. No QUERY for you, sir.
@LucasLuengo
@LucasLuengo 25 күн бұрын
I think GraphQL shines the most when you expose it to the public. Of course, you have to be careful with security, throttling, and N+1 problems, but you are giving the best experience to the people consuming the API. They can get the schema, and query whatever they need
@victor95pc
@victor95pc 25 күн бұрын
What is the big difficult related to authorization? I mean on REST we need to do the same thing, it's not like GraphQL introduce it as issue.
@LucasLuengo
@LucasLuengo 25 күн бұрын
@@victor95pc All the problems described for GraphQL are not inherent to GraphQL. You can also have N+1 problems in your REST API if you suck at making queries. I even think GraphQL makes it easier to dismantle these problems in smaller portions and reduce complexity like that. Even the badge issue that Theo describes could have happend in rest or gRPC or whatever.
@victor95pc
@victor95pc 25 күн бұрын
@@LucasLuengo Most of the issues in that post seems like a skill issue, even the one about re-running authorization checks, if you use Pundit the authorization result is cached by session, so even you run "authorize record, :update?" 10 times it will run only once... Also not that hard to save the result in the global object
@mrdmajor
@mrdmajor 25 күн бұрын
ClickbaitTube is so sad when "content creators" have to behave like National Enquirer and Star Magazine from the 1980's for engagement and views. 😥
@Siderite
@Siderite 9 күн бұрын
Never used GraphQL, I am a REST API guy, but it sounds to me like all GraphQL issues could be solved by a policy to switch to REST when a query use is mature enough and never give GraphQL the resources to bring down the servers. Meaning that if you need something that works NOW and you don't want to wait for backend guys (as a backend guy I feel a bit offended 😛) just use GraphQL, but after a while that thing should be switched to REST when the endpoint is available. That being said, I've never worked in an environment where data queries were so complex and fast changing that I needed an extra DSL just to define what I want.
@keffbarn
@keffbarn 25 күн бұрын
GraphQL is really good when you don't know how your endpoint will be consumed by a client, and when it's not possible to model a rest api in a good way to serve the data. Notion API is a perfect example when GraphQL would be better then REST for example...
@ephemer
@ephemer 20 күн бұрын
How is the badges issue unique to GraphQL? It's just crappy backend work
@br3nto
@br3nto 25 күн бұрын
0:10 GraphQL is not a good solution. In theory we should be able to write actual SQL and send to an endpoint. I don’t get why we need a limited version of that.
@MadsterV
@MadsterV 24 күн бұрын
because then you'd be running untrusted SQL in your database.
@br3nto
@br3nto 24 күн бұрын
@@MadsterV no no. Just the syntax. Then map that to one or more persisted data sources. So much like what GraphQl does, except using the standard SQL syntax.
@EricLouisYoung
@EricLouisYoung 23 күн бұрын
The abstraction of the types is the whole point.
@br3nto
@br3nto 23 күн бұрын
@@EricLouisYoung thats what schemas are for. To define the structure of the data that can be queried.
@cbaesemanai
@cbaesemanai 24 күн бұрын
I don't hate it either but as a Devops / SRE there is nothing that has caused me more grief with performance issues than GraphQL.
@u007james
@u007james 25 күн бұрын
same goes with supabase and firebase security rules
@youpele5226
@youpele5226 25 күн бұрын
Whoa
@omri9325
@omri9325 25 күн бұрын
I thought everyone knew about this already (except for the GraphQL fanboys)
@thenecroyeti1
@thenecroyeti1 25 күн бұрын
Protobuf?!
@kamalkamals
@kamalkamals 25 күн бұрын
what about a laaaaarge file of schema graphql !!!
@MrSofazocker
@MrSofazocker 25 күн бұрын
Also, who tf came up with saying "Authentication and Authorization". So saying "auth" doesn't mean anything any more. Nice. What? It's always been Access Control. Authentication - Determining if the query is from whoe they say they are Permissions - Is he allowed to do that? Permissions, giving you the even more fine-grained terms of “Privileges” and making "Roles" a pretty obvious abstraction on top of that. But no, its auth and auth.... and everyones confused. lol
@MadsterV
@MadsterV 24 күн бұрын
big words look good on presentations, but are terrible in daily use.
@ShadoFXPerino
@ShadoFXPerino 24 күн бұрын
I thought that's intentional. Say "auth" and you have to implement both because you don't know which they want.
@br3nto
@br3nto 25 күн бұрын
1:59 you know when you separate the front end development from back end development, the code seems to get a lot more complex. The code always seems to be simpler on apps where teams are full stack.
@MadsterV
@MadsterV 24 күн бұрын
disagree. We collectively abandoned Visual Basic. Code is simpler when people know what they are doing, or are led by someone who does.
@br3nto
@br3nto 24 күн бұрын
@@MadsterV the reason is simple. When you develop a solution full stack, you can manage the code complexity from both ends, whereas, when you split the front end work from the backend work, each team must coordinate changes with the other, and often that’s time consuming, so instead, they implement all this complexity so they can defer communicating and coordinating with the other team. It leads to the creation of unnecessary code that could have otherwise been avoided. The better way to divide work is feature slicing. A person or team develops a feature across the entire stack. The complexity in that case is when features are interoperable…. Which is then more a design choice.
@dkchen
@dkchen 25 күн бұрын
My biggest gripe of GraphQL is performance. You have to engineer a lot of stuff together to get the same level of performance of REST on the first day.
@kamalkamals
@kamalkamals 25 күн бұрын
with graphql u can use one of them, code first or schema first, code first more better
@dkchen
@dkchen 24 күн бұрын
@@kamalkamals Still performance sucks on day one. I have to do caching and query optimizations to make sure its okay.
@kamalkamals
@kamalkamals 24 күн бұрын
@@dkchen the performance of javascript + nodejs already suck with or without graphql
@miettoisdev
@miettoisdev 23 күн бұрын
BE vs FE (different teams, technologies, repos, priorities, timing) is the hard truth on most coompanies. GraphQL allows FE devs to cut dependency times on their workflows and be more reliable on estimations. Most of the security / performance issues mentioned were also present in REST APIs a while ago. If anything, FE devs should be actively present in API design decisions, instead of ditching a very useful pattern because someone is not doing they job right.
@Noah-cv4zo
@Noah-cv4zo 25 күн бұрын
To me, the type inferencing of GraphQL is like a happy accident. The reason you should use GraphQL is if you have many different API users and you want to allow the user to decide the shape of the data they pull.
@ShaharHarshuv
@ShaharHarshuv 25 күн бұрын
It's annoying that you still try to sell GraphQL solely as an API schema solution, because it's not even the easiest way to do it. It's very easy to set up a similar kind of type-safety around a REST API, but using swagger/openapi schemas with code generation in any languages / technology so you don't have to have your backend and front-end shared. You can also host the schema ON the API endpoint so you don't have totechnically "share code"
@genericpotato7118
@genericpotato7118 25 күн бұрын
Not sure it was intentional, but I don't think I understood WHY the badges-field was that big of an issue/why it was that heavy
@xybersurfer
@xybersurfer 25 күн бұрын
yeah. it sounded like company politics was the main issue there
@danhorus
@danhorus 25 күн бұрын
I understood it was not a persisted field, meaning they had to run lots of calculations to compute each badge on every request. In short: bad database and API designs
@TurtleKwitty
@TurtleKwitty 25 күн бұрын
it was hogging the resources of the payments db, so payments werent able to go through quickly anymore
@xybersurfer
@xybersurfer 25 күн бұрын
@@danhorus it sounded like a technically fixable problem
@DanielNistrean
@DanielNistrean 25 күн бұрын
tRPC is awful for exposing API's. Most projects I worked on in my career needed to expose API's so we ended up using tRPC for internal API and REST for exposing endpoints externally. I'm now the techlead on a project that has grown quite a bit and I'm deeply regretting buying into your hype with tRPC, I didn't do enough research. I plan to remove it from our system eventually.
@bhumit070
@bhumit070 25 күн бұрын
what problems are you facing?
@John2202W
@John2202W 25 күн бұрын
Have you looked into options like trpc-openapi (or the newer fork, trpc-swagger)? They make it very easy to expose your tRPC procedures as REST endpoints following the openapi spec
@bhumit070
@bhumit070 25 күн бұрын
@@John2202W I haven’t use TRPC so asking
@j.hoffmann
@j.hoffmann 25 күн бұрын
Exposing APIs with tRPC is really easy with Next.js’s app router. Just create a route.tsx and fetch the data as you would in a page then return it. I can see how this could be annoying with a ton of endpoints though but the above comment has solutions for that.
@neociber24
@neociber24 25 күн бұрын
Isn't trpc mean to be internal? Pretty sure you can expose them with the createCaller or whatever is called, or separate the query/mutation logic and use a service approach to use them in the API.
@SergeSavostin
@SergeSavostin 25 күн бұрын
...until you start using it.
@zlwuzlwu
@zlwuzlwu 25 күн бұрын
And ... tRPC
@Ratstail91
@Ratstail91 25 күн бұрын
Here's something funny - I wanted to learn graphQL, so I followed a bit of random advice online and tried to make a clone - sineQL works, but is unweildy to use. I still don't understand graphQL.
@IamFrancoisDillinger
@IamFrancoisDillinger 24 күн бұрын
if you have $10 to waste, there are some decent courses on Udemy. I'm sure some youtube has a good course but I haven't found any myself.
@minma02262
@minma02262 25 күн бұрын
Just dont listen to theo. You will solve most your problem 😂😂😂😂😂
@duelarm
@duelarm 25 күн бұрын
Super agree
@jay-cm
@jay-cm 25 күн бұрын
Why so many of Theo's haters watch his videos? I don't get it.
@naught0
@naught0 25 күн бұрын
@@jay-cm Man is literally just reading an interesting blog post and they come out the woodwork lmao
@minma02262
@minma02262 25 күн бұрын
@@jay-cm KZfaq autoplay some video in the background while I do stuff
@jarrodhroberson
@jarrodhroberson 25 күн бұрын
It was a terrible idea from day zero. For all the reasons I was telling my coworkers that thought it was this silver bullet to get front end devs to leave them alone. Dozens of projects ripped it all out in less than a year for all the reasons I told them would happen.
@RusuTraianCristian
@RusuTraianCristian 25 күн бұрын
I always said k8s is overrated. It’s a great and powerful tool (we use it as well) but not everyone should employ it because not every system needs it.
@TurtleKwitty
@TurtleKwitty 25 күн бұрын
The absolute funniest thing for me is that in a world where postgresql exists graphql is useless; if youre really at a point where you need graphql for some odd reason you might as well expose your db since it has all the security for doing that if you set it up (hello supabase) but for some reason reimplementing a slower (thanks to n+1 instead of letting the db handle internal re-queries) and less secure version is seen as a win but just doing the simple thing of using your db query language as the query language is seen as bad.
@user-fr2fm3ri3w
@user-fr2fm3ri3w 25 күн бұрын
What? Expose the database? What are you on.
@TurtleKwitty
@TurtleKwitty 25 күн бұрын
@@user-fr2fm3ri3w PostgreSQL has fine grain permission xD I'm on firebase and supebase and all these backend as a service things exist universe, what universe are you in?
@ermilburn02
@ermilburn02 25 күн бұрын
I don't think I've ever been this early to a Theo video...
@SazzadAhmedTuhin
@SazzadAhmedTuhin 25 күн бұрын
Hasura and Neo4j have made awesome integrations with graphql that i think it's high time to start using graphql
@johnstarich
@johnstarich 25 күн бұрын
Many of the problems discussed here are limitations of the tools used with GraphQL. Granted, making those tools is non-trivial, so one must weigh the tradeoffs. Sure, GraphQL isn’t as easy as setting up REST server backends. However, the point of GraphQL is to craft the best possible user experience, not necessarily the best backend developer experience. Many organizations don’t need this at the API layer, but some do.
@jpegjpg
@jpegjpg 25 күн бұрын
If your app is the only consumer of your API you really don't need graphQL. If you are building an API for customers to user it's a fantastic solution.
@zhanezar
@zhanezar 25 күн бұрын
not being a dick, but why cant REST swagger doc be good ?
@jpegjpg
@jpegjpg 25 күн бұрын
​@@zhanezar Not being a dick by why can't 2 things be good? I like NY style pizza, Chicago deep dish and classic napoleon they are all good and all satisfy me in different ways. Choose the tool that makes sense. My stack at work uses both. All are alphanumeric data is accessed from graphql where as all our file based operations use rest? Why you might ask? Because graphQL is a better fit for the complex queries our customer wants on our data sets in our databases. Why still use REST? Because serving generic files in REST is easy and stupid complicated in graphql.
@michaelgabriel1069
@michaelgabriel1069 25 күн бұрын
@@jpegjpg Because GraphQL fucking sucks when the consumer doesn't have a direct line of communication with you, and most companies don't have the luxury of having an on-call developer answer customer service requests. Also because GraphQL is a fucking nightmare to secure and ALL consumers outside of your organization are potential threat actors. If you're building an API for customers to use, GraphQL is one of the worst solutions possible. Did you not watch the video? That was literally one of the conclusions.
@_BonsaiBen
@_BonsaiBen 25 күн бұрын
Yikes
@mubashir3
@mubashir3 25 күн бұрын
I get the feeling that Theo has never actually implemented/architected a good GraphQL pipeline. Only then would he understand the real value of it. For small and simple projects, he is correct. GraphQL is an overkill for those scenarios. However, for data intensive apps, GraphQL cannot be beat. For example our webapp has data tables that need to show large amounts of data. Thousands of rows. They need to be paginated, filtered, and sorted among other things. And we have several dozen tables that need to do this. This is the sort of thing where GraphQL really really shines. GraphQL libraries in the frontend and also at the backend do most of the work. They provide type safety, performance and so much more. Also, if you are not using Relay in the frontend, you are doing GraphQL wrong.
@jackwright517
@jackwright517 25 күн бұрын
What's wrong with Apollo client?
@JeyPeyy
@JeyPeyy 25 күн бұрын
Theo please, you gotta get rid of these stupid thumbnails. And that mustache, it just doesn't fit you as well as it does on Prime
@mohitkumar-jv2bx
@mohitkumar-jv2bx 25 күн бұрын
"You can't have a body in GET". Lol. Theo exposing himself in each video. 😂
@valerysmirnov9535
@valerysmirnov9535 25 күн бұрын
No one does that, so technically it's incorrect, but practically is
@mohitkumar-jv2bx
@mohitkumar-jv2bx 25 күн бұрын
@@valerysmirnov9535 I wouldn't say none. Elasticseach's apis for getting documents are all GET apis(atleast they used to be last time i checked) Elasticseach has got a big userbase too. But i do get your point. My overarching point basically here is that Theo keeps getting things wrong. Sometimes because he wants paid promotions. Sometimes he just don't know stuff but acts like he does
@jimiscott
@jimiscott 25 күн бұрын
Some servers will actually reject your request if you do.
@kd8437
@kd8437 25 күн бұрын
​@@jimiscott but it doesn't mean that this is a correct behavior. You can define a body for GET requests, this is not forbidden by HTTP specification.
@kd8437
@kd8437 25 күн бұрын
@@valerysmirnov9535 Defining a body for GET request is not forbidden by HTTP protocol, so you can define it. That's the point. ElasticSearch uses it, OpenSearch uses it. This is correct technically and practically, Google and Amazon cloud services use it. There were event requests from community to add support for GET requests with body in Apolo Client for some optimization purposes. So, you are just wrong...
@armanomidi4859
@armanomidi4859 9 күн бұрын
SKILLS ISSUE please learn how to use GraphQL before reacting to it!
@the-mojojojo
@the-mojojojo 25 күн бұрын
first
@tefkah
@tefkah 25 күн бұрын
not even close buddy
@davidb.6271
@davidb.6271 25 күн бұрын
Entertaining content, but mostly bullshit.
@random.mandem
@random.mandem 25 күн бұрын
This guy just won't stop talking.
@saiyyy
@saiyyy 25 күн бұрын
I mean who’s forcing you to watch his channel 💀
@AndreiBenHur
@AndreiBenHur 25 күн бұрын
😂😂
@kalist8938
@kalist8938 24 күн бұрын
Honestly stop speaking about programming / tech / dev. U re more a youtuber than a real programmer.
@PapaVikingCodes
@PapaVikingCodes 25 күн бұрын
Graph for us is night and day. We pull data from three clouds and have multiple backend languages to support. Resolvers make it nice. Kubes and the works… it’s all bully in its own way. Good take.
How React Query Won
34:52
Theo - t3․gg
Рет қаралды 64 М.
The Horrors Of Patching Globals
54:04
Theo - t3․gg
Рет қаралды 31 М.
孩子多的烦恼?#火影忍者 #家庭 #佐助
00:31
火影忍者一家
Рет қаралды 2,3 МЛН
Is it Cake or Fake ? 🍰
00:53
A4
Рет қаралды 20 МЛН
⬅️🤔➡️
00:31
Celine Dept
Рет қаралды 48 МЛН
JavaScript Is A Totally Normal Language
46:04
Theo - t3․gg
Рет қаралды 42 М.
98% Cloud Cost Saved By Writing Our Own Database
21:45
ThePrimeTime
Рет қаралды 312 М.
Revisiting Server-Driven UI
56:17
Front End Happy Hour
Рет қаралды 4,6 М.
I'm Coming Around To Go...
21:33
Theo - t3․gg
Рет қаралды 101 М.
The Weirdest Language I've Ever Seen (I kinda love it...)
58:11
Theo - t3․gg
Рет қаралды 38 М.
Popular Technologies that Won't be Around Much Longer...
14:36
Sideprojects
Рет қаралды 133 М.
If this ships, it will change javascript forever
25:54
Theo - t3․gg
Рет қаралды 191 М.
Falling In Love With Gleam
33:26
Theo - t3․gg
Рет қаралды 191 М.
Life After SQL (EdgeDB Is Fascinating)
15:40
Theo - t3․gg
Рет қаралды 54 М.
Vapor: The Future Of Vue
21:27
Theo - t3․gg
Рет қаралды 111 М.
Samsung Galaxy 🔥 #shorts  #trending #youtubeshorts  #shortvideo ujjawal4u
0:10
Ujjawal4u. 120k Views . 4 hours ago
Рет қаралды 10 МЛН
Телефон в воде 🤯
0:28
FATA MORGANA
Рет қаралды 1,2 МЛН
iPhone 12 socket cleaning #fixit
0:30
Tamar DB (mt)
Рет қаралды 51 МЛН
Asus  VivoBook Винда за 8 часов!
1:00
Sergey Delaisy
Рет қаралды 1,1 МЛН