1
0
mirror of https://github.com/actix/examples synced 2025-02-17 15:23:31 +01:00

Rename graphql-demo to juniper-advanced

This commit is contained in:
Yuki Okushi 2020-05-19 14:23:28 +09:00
parent bc6f614f78
commit 3730fa8f55
No known key found for this signature in database
GPG Key ID: B0986C85C0E2DAA1
13 changed files with 8 additions and 5 deletions

View File

@ -13,7 +13,6 @@ members = [
"docker_sample", "docker_sample",
"error_handling", "error_handling",
"form", "form",
"graphql-demo",
"hello-world", "hello-world",
"http-proxy", "http-proxy",
"json", "json",
@ -21,6 +20,7 @@ members = [
"json_error", "json_error",
"jsonrpc", "jsonrpc",
"juniper", "juniper",
"juniper-advanced",
"middleware", "middleware",
"multipart", "multipart",
"multipart-s3", "multipart-s3",

View File

@ -1,5 +1,5 @@
[package] [package]
name = "actix-graphql-demo" name = "juniper-advanced"
version = "2.0.0" version = "2.0.0"
authors = ["Dwi Sulfahnur <hello@dwisulfahnur.com>"] authors = ["Dwi Sulfahnur <hello@dwisulfahnur.com>"]
edition = "2018" edition = "2018"

View File

@ -1,4 +1,4 @@
# actix-graphql-demo # juniper-advanced
GraphQL Implementation in Rust using Actix, Juniper, and Mysql as Database GraphQL Implementation in Rust using Actix, Juniper, and Mysql as Database
@ -17,7 +17,7 @@ Create ```.env``` file on the root directory of this project and set environment
```sh ```sh
# go to the root dir # go to the root dir
cd graphql-demo cd juniper-advanced
# Run # Run
cargo run cargo run

View File

@ -1,6 +1,9 @@
# Juniper # Juniper
[Juniper](https://github.com/graphql-rust/juniper) integration for Actix web [Juniper](https://github.com/graphql-rust/juniper) integration for Actix web.
If you want more advanced example, see also the [juniper-advanced example].
[juniper-advanced example]: https://github.com/actix/examples/tree/master/juniper-advanced
## Usage ## Usage