async-graphql/examples/tide.rs

48 lines
1.5 KiB
Rust
Raw Normal View History

mod starwars;
use async_graphql::http::{
graphiql_source, playground_source, GQLRequest, GQLResponse, IntoQueryBuilder,
};
2020-03-19 09:20:12 +00:00
use async_graphql::{EmptyMutation, EmptySubscription, Schema};
2020-04-01 08:53:49 +00:00
use futures::TryFutureExt;
use mime;
use tide::{self, Request, Response};
2020-03-19 09:20:12 +00:00
type StarWarsSchema = Schema<starwars::QueryRoot, EmptyMutation, EmptySubscription>;
async fn index(mut request: Request<StarWarsSchema>) -> Response {
let gql_request: GQLRequest = request.body_json().await.unwrap();
let schema = request.state();
let gql_response = gql_request
.into_query_builder(schema)
2020-04-01 08:53:49 +00:00
.and_then(|builder| builder.execute())
.await;
Response::new(200)
.body_json(&GQLResponse(gql_response))
.unwrap()
}
async fn gql_playground(_request: Request<StarWarsSchema>) -> Response {
Response::new(200)
2020-03-17 09:26:59 +00:00
.body_string(playground_source("/", None))
.set_mime(mime::TEXT_HTML_UTF_8)
}
async fn gql_graphiql(_request: Request<StarWarsSchema>) -> Response {
Response::new(200)
.body_string(graphiql_source("/"))
.set_mime(mime::TEXT_HTML_UTF_8)
}
#[async_std::main]
async fn main() -> std::io::Result<()> {
let mut app = tide::with_state(
2020-03-29 12:02:52 +00:00
Schema::build(starwars::QueryRoot, EmptyMutation, EmptySubscription)
.data(starwars::StarWars::new())
.finish(),
);
app.at("/").post(index);
app.at("/").get(gql_playground);
app.at("/graphiql").get(gql_graphiql);
app.listen("0.0.0.0:8000").await
}