1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00

Merge pull request #321 from JohnTitor/juniper

Rename `graphql-demo` to `juniper-advanced`
This commit is contained in:
Yuki Okushi 2020-05-20 10:59:49 +09:00 committed by GitHub
commit 1cc8732b08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
13 changed files with 8 additions and 5 deletions

View File

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

View File

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

View File

@ -1,4 +1,4 @@
# actix-graphql-demo
# juniper-advanced
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
# go to the root dir
cd graphql-demo
cd juniper-advanced
# Run
cargo run

View File

@ -1,6 +1,9 @@
# 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