I like graphql. Because it has a single endpoint and I can only pull out the data I need.
So I use apollo-server for the server and apollo-client for the client.
Starting with apollo-client 3.0, state-management is supported.
The reactive variable function of the apollo-client is very convenient, but I prefer redux.
Redux toolkit also shortened the length of code that needs to be written.
The question is this.
Can't I use apollo-client 3.0 and redux together?
Can't I just use graphql without an apollo-client on redux? then How?
check please!