-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Full-Stack React, TypeScript, and Node
By :

We've already taken a look at GraphQL in Chapter 9, What is GraphQL?. In this chapter, let's review these packages as well as introduce some new related packages that we will be using.
Let's list some of the GraphQL-related packages we will be using for our app:
graphql
This package is the reference implementation for JavaScript of GraphQL. It is created by the GraphQL foundation and we will be using it to do some of our GraphQL query testing.
graphql-middleware
This is a package that allows us to inject our code either before or after a resolver runs. Some possible actions include, but are not limited to, authentication checks and logging.
graphql-tools
This package provides some helpers for testing and mocking our GraphQL queries when needed.
apollo-server-express
This is the main library we will use to create our Express GraphQL server, which we already used in Chapter 9, What is GraphQL?.
These...