codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

Member-only story

Data-Driven React with Apollo, DynamoDB, and Infrastructure-Components

Frank Zickert | Quantum Machine Learning
codeburst
Published in
9 min readAug 28, 2019
Photo by Carlos Muza on Unsplash

TL;DR: In this post, we create a full-stack React application from scratch with Infrastructure-Components. We take some user input and store it in a database (DynamoDB) through a GraphQL interface. We also retrieve the data from the database and display it. We cover two ways of working with the database:

  1. With React-Apollo’s components (<Query/> and <Mutation/>)
  2. With React-Apollo’s hooks

Define the Architecture of Your App

We set up our project using Infrastructure-Components. These React-Components let us define our infrastructure architecture as part of our React-app. We don’t need any other configuration like Webpack, Babel, or Serverless anymore.

We can concentrate on the functional part of our app. This is: How to work with a database in React.

Infrastructure-Components support the creation of basic single-page apps as well as service-oriented-react apps. The latter support backend services and databases out of the box. This post provides the setup we are going to use in this post. But we’ll go through the main points here, too.

Infrastructure-Components-based projects have a single top-level component. This defines the architecture of your app. Sub-components (children) refine the app’s behavior and add functions.

For we create a full-stack app, we use the <ServiceOrientedApp/>-component as our top-level component. We export it as default in our entry point file (src/index.tsx).

A <ServiceOrientedApp/> is an interactive web-application. It supports the use of routes, services, and a database.

  • A <Route/> is a page of your app. it works like the <Route/> in react-router. We can render anything from a simple <div/> to a page full of React components…

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Published in codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Written by Frank Zickert | Quantum Machine Learning

You're interested in quantum computing and machine learning. But you don't know how to get started? Let me help

Write a response