Using React with GraphQL clients like Apollo Client is a good idea? The same results i can achieve with react and new Context API.
Basically i can consume GraphQL APIs using axios or any other libraries like this. And for state management i can use react's new Context APIs which is really simple.
axios.get('localhost://4000?qraphql').then((res)=>{
//do something with the response.
})
Is there still any Advantages to go with Apollo Client. Why would I really go for Apollo client when i can achieve the same without it. It will help me to reduce my bundle size.