Using GraphQL with Rust and Apollo Federation
This repo and accompanying information was presented at RustLang Los Angeles February 2021 - see video
This talk covered:
- Core concepts of GraphQL
- Core concepts of GraphQL federation vs schema stitching
- Rust
- SQLx + PostgreSQL
- async-graphql
- actix
- Apollo Federation with Node.js
See Cargo.toml version
$ ./scripts/docker/init-db.sh
$ cargo install sqlx-cli
$ cd ./svc-user $ sqlx database create $ sqlx migrate run $ cargo run
$ cd ./svc-skill $ sqlx migrate run $ cargo run
$ cd ./gateway $ npm install $ npm run dev