Go to file
2020-05-16 21:23:28 +08:00
.github/workflows Update release.yml 2020-05-14 16:03:57 +08:00
async-graphql-actix-web v1.12.10 2020-05-16 21:23:28 +08:00
async-graphql-derive v1.12.10 2020-05-16 21:23:28 +08:00
async-graphql-lambda v1.12.10 2020-05-16 21:23:28 +08:00
async-graphql-parser v1.12.10 2020-05-16 21:23:28 +08:00
async-graphql-tide v1.12.10 2020-05-16 21:23:28 +08:00
async-graphql-warp v1.12.10 2020-05-16 21:23:28 +08:00
docs Update error_extensions.md 2020-05-13 12:51:44 +08:00
src Remove some unsafe code 2020-05-16 21:14:26 +08:00
tests Merge pull request #75 from phated/interface-enums 2020-05-11 13:44:19 +08:00
.gitignore Add docs 2020-04-15 11:15:30 +08:00
Cargo.toml v1.12.10 2020-05-16 21:23:28 +08:00
feature-comparison.md Schema parser has been implemented. 2020-05-15 22:27:38 +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 Update docs 2020-05-10 09:41:13 +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 !