114 个稳定版本
7.0.7 | 2024 年 7 月 14 日 |
---|---|
7.0.5 | 2024 年 5 月 9 日 |
7.0.3 | 2024 年 3 月 16 日 |
6.0.11 | 2023 年 11 月 19 日 |
2.0.5 | 2020 年 10 月 19 日 |
838 在 网络编程 中排名
543,721 每月下载量
用于 212 个 crate(22 个直接使用)
69KB
2K SLoC
async-graphql
一个完全符合规范的、高性能的 GraphQL 服务器库
书籍 • 中文文档 • 文档 • GitHub 仓库 • Cargo 包
此 crate 使用 #![forbid(unsafe_code)]
来确保所有内容都在 100% 安全的 Rust 中实现。
静态模式
use std::error::Error;
use async_graphql::{http::GraphiQLSource, EmptyMutation, EmptySubscription, Object, Schema};
use async_graphql_poem::*;
use poem::{listener::TcpListener, web::Html, *};
struct Query;
#[Object]
impl Query {
async fn howdy(&self) -> &'static str {
"partner"
}
}
#[handler]
async fn graphiql() -> impl IntoResponse {
Html(GraphiQLSource::build().finish())
}
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
// create the schema
let schema = Schema::build(Query, EmptyMutation, EmptySubscription).finish();
// start the http server
let app = Route::new().at("/", get(graphiql).post(GraphQL::new(schema)));
println!("GraphiQL: https://127.0.0.1:8000");
Server::new(TcpListener::bind("0.0.0.0:8000"))
.run(app)
.await?;
Ok(())
}
动态模式
需要启用 dynamic-schema
功能。
use std::error::Error;
use async_graphql::{dynamic::*, http::GraphiQLSource};
use async_graphql_poem::*;
use poem::{listener::TcpListener, web::Html, *};
#[handler]
async fn graphiql() -> impl IntoResponse {
Html(GraphiQLSource::build().finish())
}
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
let query = Object::new("Query").field(Field::new(
"howdy",
TypeRef::named_nn(TypeRef::STRING),
|_| FieldFuture::new(async { "partner" }),
));
// create the schema
let schema = Schema::build(query, None, None).register(query).finish()?;
// start the http server
let app = Route::new().at("/", get(graphiql).post(GraphQL::new(schema)));
println!("GraphiQL: https://127.0.0.1:8000");
Server::new(TcpListener::bind("0.0.0.0:8000"))
.run(app)
.await?;
Ok(())
}
功能
- 完全支持静态和动态模式
- 完全支持 async/await
- 类型安全
- Rustfmt 友好(过程宏)
- 自定义标量
- 最小开销
- 易于集成(poem、axum、actix-web、tide、warp、rocket 等)
- 上传文件(多部分请求)
- 订阅(WebSocket 传输)
- 自定义扩展
- 错误扩展
- 限制查询复杂度/深度
- 批量查询
- Apollo 持久查询
- Apollo 追踪扩展
- Apollo 联邦(v2)
注意:最低支持的 Rust 版本:1.75.0 或更高版本
示例
所有示例都在 子仓库 中,位于 examples 目录。
git submodule update # update the examples repo
cd examples && cargo run --bin [name]
有关更多信息,请参阅 子仓库 的 README.md。
集成
集成是将 async-graphql
与您的 Web 服务器粘合在一起的部分,这里提供了这些集成,或者您可以构建自己的集成!
- 诗歌 async-graphql-poem
- Actix-web async-graphql-actix-web
- Warp async-graphql-warp
- Tide async-graphql-tide
- Rocket async-graphql-rocket
- Axum async-graphql-axum
库功能
此库提供以下功能。大多数功能默认未启用,除了GraphiQL(graphiql
)和GraphQL Playground(playground
)的集成。
功能 | 启用 |
---|---|
apollo_tracing |
启用Apollo 跟踪扩展。 |
apollo_persisted_queries |
启用Apollo 持久查询扩展。 |
bson |
与bson 库集成。 |
bigdecimal |
与bigdecimal 库集成。 |
cbor |
支持serde_cbor。 |
chrono |
与chrono 库集成。 |
chrono-tz |
与chrono-tz 库集成。 |
dataloader |
支持DataLoader。 |
decimal |
与rust_decimal 库集成。 |
dynamic-schema |
支持动态模式 |
fast_chemail |
与fast_chemail 库集成。 |
graphiql |
启用GraphiQL IDE集成。 |
hashbrown |
与hashbrown 库集成。 |
log |
启用Logger 扩展。 |
opentelemetry |
启用OpenTelemetry 扩展。 |
playground |
启用GraphQL playground IDE集成。 |
rawvalue |
支持来自serde_json 的原始值。 |
secrecy |
与secrecy 库集成。 |
smol_str |
与smol_str 库集成。 |
string_number |
启用StringNumber。 |
time |
与time 库集成。 |
tracing |
启用Tracing 扩展。 |
tempfile |
将上传的内容保存在临时文件中。 |
tokio-sync |
与tokio::sync::RwLock 和tokio::sync::Mutex 集成。 |
unblock |
支持异步读取Upload |
uuid |
与uuid crate集成。 |
url |
与url crate集成。 |
可观察性
Apollo Studio 是用于在生产环境中监控你的 GraphQL 服务器的工具之一。Apollo Studio 是一个云平台,帮助您构建、监控、验证和保障您组织的数据图。添加扩展 crate async_graphql_apollo_studio_extension
以使其可用。
谁在生产环境中使用async-graphql
?
- Vector
- DiveDB
- Kairos Sports tech
- AxieInfinity
- Nando's
- Prima.it
- VoxJar
- Zenly
- Brevz
- thorndyke
- My Data My Consent
社区展示
- rust-actix-graphql-sqlx-postgresql 使用 Rust 和 Apollo Federation 进行 GraphQL
- entity-rs 基于TAO的简单框架,Facebook的社交图分布式数据库。
- vimwiki-server 提供了用于检查和操作 vimwiki 文件的 GraphQL 服务器。
- Diana Diana 是一个为 Rust 设计的 GraphQL 系统,旨在开箱即用,同时不牺牲配置能力。
- cindythink
- sudograph
博客文章
- 使用 Rust 的 Async GraphQL
- Rust 中的 GraphQL
- 如何使用 Rocket、GraphQL、PostgreSQL 实现 Rust 微服务
- 在 Lambda 上使用 Rust 运行 GraphQL
参考
- GraphQL
- GraphQL 多部分请求
- GraphQL 订阅的多部分 HTTP 协议
- GraphQL 游标连接规范
- GraphQL over WebSocket 协议
- Apollo Tracing
- Apollo Federation
许可
根据以下之一进行许可
- Apache License 2.0 (LICENSE-APACHE 或 http://www.apache.org/licenses/LICENSE-2.0)
- MIT 许可证 (LICENSE-MIT 或 http://opensource.org/licenses/MIT)
lib.rs
:
GraphQL 的值。在 async-graphql
crate 中使用。
依赖关系
~1.6–2.7MB
~52K SLoC