...

/

Shortcomings of GraphQL in React without a GraphQL Client library

Shortcomings of GraphQL in React without a GraphQL Client library

Before we move on to the Apollo Client, we discuss why it is important to use GraphQL in React with a GraphQL client library rather than without one.

We'll cover the following...

We implemented a simple GitHub issue tracker that uses React and GraphQL without a dedicated library for GraphQL, using only axios to communicate with the GraphQL API with HTTP POST methods. I think it is important to work with raw technologies, in this case GraphQL, ...