←back to thread

153 points michaelanckaert | 3 comments | | HN request time: 0.698s | source
1. geitir ◴[] No.23488268[source]
One thing I've noticed is it seems redux and graphql are solving the same problem in an entirely different way
replies(1): >>23490528 #
2. iso-8859-1 ◴[] No.23490528[source]
Redux brands itself as a tool for managing state. How does GraphQL manage state?
replies(1): >>23491465 #
3. geitir ◴[] No.23491465[source]
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.