Hacker News new | ask | show | jobs
by iso-8859-1 2204 days ago
Redux brands itself as a tool for managing state. How does GraphQL manage state?
1 comments

The way I see it is Redux is a local normalized store which can then be used via the selector pattern to generate custom objects / views. With GraphQL you are requesting that derived data to be generated for you via the query language.

Regarding managing state I don't see GraphQL helping with that at all.