/graphql-express

Learning GraphQL with Express

Primary LanguageJavaScript

Graphql Express

graphql-express

An example GraphQL server with Express.

Table of contents

Setting up the project

Start by cloning the project with the command:

$ git clone https://github.com/rmiyazaki6499/graphql-express.git

Setting up the project with Docker

For those that are not interested in setting up the project manually or would simply not have to worry about downloading node.js and its dependencies, I have created a Dockerfile and docker-compose.yml file to help create a container with everything you would need to run the graphql-express.

Install Docker

To make this as easy as possible, we will be using Docker Compose to creat our container.

$ docker-compose --version
docker-compose version 1.26.2, build eefe0d31
  • Go into the project directory to build and run the container with:
$ cd graphql-express/
$ docker-compose up -d --build

This may take a few moments

Navigate to http://localhost:4000/graphql to view the server locally. It should look something like this:

  • Try the query:
query {
  posts {
    id
    author {
      id
      firstName
      lastName
    }
    body
  }
}

GraphiQL Server

Cleaning up the Container and Image

  • To stop the container from running, use <Ctrl-C> twice.
  • To close down the container use the command:
$ docker-compose down
  • Then to clean up the container and image which we are no longer using use the command:
$ docker system prune -fa
  • Confirm that the container and image is no longer there with:
$ docker system df -v

Inspiration

Build a Simple API Service with Express and GraphQL by Braden Kelley https://developer.okta.com/blog/2018/09/27/build-a-simple-api-service-with-express-and-graphql

Contact

Ryuichi Miyazaki