https://github.com/frontendmasters/advanced-graphql
[Course] Advanced GraphQL - Learn advanced practices and techniques when when building a GraphQL API.
https://github.com/frontendmasters/advanced-graphql
Last synced: 2 months ago
JSON representation
[Course] Advanced GraphQL - Learn advanced practices and techniques when when building a GraphQL API.
- Host: GitHub
- URL: https://github.com/frontendmasters/advanced-graphql
- Owner: FrontendMasters
- Created: 2018-04-18T18:59:34.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-03-01T20:54:45.000Z (over 1 year ago)
- Last Synced: 2025-04-03T01:09:38.801Z (3 months ago)
- Language: JavaScript
- Homepage: https://frontendmasters.com/courses/advanced-graphql/
- Size: 708 KB
- Stars: 111
- Watchers: 9
- Forks: 100
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
> [!NOTE]
> This repo is from an archived version of the course. Watch the latest version of the course on [frontendmasters.com](https://frontendmasters.com/courses/advanced-graphql-v2/).# Frontend Masters: [Advanced GraphQL APIs Course](https://frontendmasters.com/courses/advanced-graphql/)
> Learn and advanced and practical approach to build a GraphQL API, by [Scott Moss](https://github.com/hendrixer)### tech check
* Node v8+
* Yarn / NPM (latest)
* Mongo (latest) (see below for Docker install)
* Git + Github## Course Format
This course has a video component on FrontEnd Masters. It follows the video closely. The repo is broken down into different branches in the following format:
`lesson-{lesson number}`
`lesson-{lesson-number}-solution`Each branch focuses on a specific topic and has instructions in it's README.
## MongoDB with Docker
* Install [Docker](https://www.docker.com/community-edition).
* Run:```shell
$ docker run -p 27017:27017 -d mongo
```## Get started
Check out to lesson 1
`git checkout lesson-1`
And follow the README there. Enjoy!