We talked about how a "create" operation flows through a web application. Let's talk about a "read".

Let's talk through an example using the CashPal app. Our product manager wants to show profile data on a user's settings page. Here's how we could engineer that feature request:
GET request to a /users endpoint on the back-end server.SELECT statement to retrieve the user's record from the users table in the database.JSON object and sends it back to the front-end.