DEV Community

Discussion on: I built a chat app using React and GraphQL

Collapse
 
rafarochas91 profile image
Rafael Rocha

I find that apollo client with a normalized cache object to be more than enough for this cases global app state. But I also can see the point of approaching a more familiar tool like redux. It's not a bad approach by any means.
I've used apollo client in realtime production ready client applications and it has fit a lot of different use cases, some of them more complex than p2p chats, like small interactive cooperative data visualization apps.

Thread Thread
 
aouahib profile image
Abdou Ouahib

That's actually interesting, I'll definitely do more research on this subject. Thanks for the insights.