From 260c03e55f636d5adb40d38683b5e77ced94cdfd Mon Sep 17 00:00:00 2001 From: Nicolai Unrein Date: Wed, 20 May 2020 13:29:07 +0200 Subject: [PATCH] add examples and benchmarks to introduction of book --- docs/en/src/introduction.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/en/src/introduction.md b/docs/en/src/introduction.md index 9c003f78..383ea040 100644 --- a/docs/en/src/introduction.md +++ b/docs/en/src/introduction.md @@ -12,3 +12,18 @@ I like GraphQL and Rust. I've been using `Juniper`, which solves the problem of As I write this document today (April 15, 2020), a month and a half after I started `Async-graphql` development, it has surpassed my goal of becoming a fully functional graphql server library. + +## Examples + +If you are just getting started, we recommend checking out our examples at: +[https://github.com/async-graphql/examples](https://github.com/async-graphql/examples) + +To see how you would create a Relay-compliant server using async-graphql, warp, diesel & postgresql, you can also check out a real-world example at: +[https://github.com/phated/twentyfive-stars](https://github.com/phated/twentyfive-stars) + +## Benchmarks + +```bash +git clone https://github.com/async-graphql/benchmark +cargo run --release +```