Go to file
sunli dc7c8d5280 Merge branch 'parser'
Implement a new GraphQL query parser and remove the dependency on graphql-parser.
2020-05-09 17:55:04 +08:00
.github/workflows Update book.yml 2020-05-07 10:05:37 +08:00
async-graphql-actix-web v1.10.12 2020-05-07 20:45:33 +08:00
async-graphql-derive Merge branch 'parser' 2020-05-09 17:55:04 +08:00
async-graphql-tide v1.10.12 2020-05-07 20:45:33 +08:00
async-graphql-warp v1.10.12 2020-05-07 20:45:33 +08:00
docs Update cursor_connections.md 2020-05-07 10:08:44 +08:00
src Merge branch 'parser' 2020-05-09 17:55:04 +08:00
tests Merge branch 'parser' 2020-05-09 17:55:04 +08:00
.gitignore Add docs 2020-04-15 11:15:30 +08:00
Cargo.toml Merge branch 'parser' 2020-05-09 17:55:04 +08:00
feature-comparison.md Update feature-comparison.md 2020-05-03 22:53:27 +08:00
LICENSE-APACHE add some files 2020-03-01 21:56:14 +08:00
LICENSE-MIT add some files 2020-03-01 21:56:14 +08:00
README.md Add Feature Comparison 2020-05-03 21:46:38 +08:00

The GraphQL server library implemented by rust

Async-graphql is a high-performance server-side library that supports all GraphQL specifications.

Examples

If you are just getting started, we recommend checking out our examples at: 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

Benchmark

git clone https://github.com/async-graphql/benchmark
cargo run --release

Features

  • Fully support async/await
  • Type safety
  • Rustfmt friendly (Procedural Macro)
  • Custom scalar
  • Minimal overhead
  • Easy integration (hyper, actix_web, tide ...)
  • Upload files (Multipart request)
  • Subscription (WebSocket transport)
  • Custom extension
  • Apollo Tracing extension
  • Limit query complexity/depth
  • Error Extensions
  • Apollo Federation

Integrations

License

Licensed under either of

References

Contribute

Welcome to contribute !