What's the general consensus in this channel for Local State Management when using Apollo Client in your app?
⢠Apollo Client (apollo-link-state)
⢠Redux / MobX / etc
h
Harshit
09/06/2019, 6:15 PM
I generally tend to rely on the new context API if I am already using apollo as it already does the data management part in it's store.
Context API is used for that parts the needs to be shared.
apollo-link-state is also good but the code to set that up and querying the store using the API is not very elegant at times if your component is presentational and not already using a graphql query.
š 1
i
Ivor
09/09/2019, 12:27 PM
Missed your reply @Harshit ā thanks for your input. I agree, I'm using Context API for now and the