March 2022
Intermediate to advanced
390 pages
6h 43m
English
In the previous chapter, we saw how to use the Angular CLI to create a fresh Angular project based on a recent version of the framework. We reviewed many fundamental Angular concepts, such as modules, components, and services, as well as how to use the Angular CLI to generate the artifacts that constitute the structure of our application.
We also included Angular Material in our project to provide Material Design components for creating a visually appealing application UI.
In this chapter, we'll look specifically at how to integrate the frontend with the backend using Apollo Client, which is designed for sending GraphQL queries and mutations to the server to fetch and write data.
We'll go over the ...