|
|
|
|
|
by joshstrange
1102 days ago
|
|
In my experience GraphQL doesn’t scale great and it is incompatible with frontend state stores (like Vuex/Pinia) due to every component needing a different subset of data. Maybe you can write a layer that uses data from the store and progressively loads what’s needed but that sounds like a huge pain and frontend code that needs to be able to handle the absence of data until specific properties load. Places where I’ve used GraphQL feel like we are just playing around and spend more time trying to get basics things to work with a ton of boilerplate vs actually building. Maybe that’s just my experience but yeah. |
|