cb00a7b2bc
Path handling changed in Rocket 0.4 and this commit updates the way those paths are handled. It adds an implementation of the `FromFormValue` trait to the `GraphQLRequest` object. It also changes the documentation to use the multi-segment query string syntax. All existing tests pass as expected.
50 lines
1.2 KiB
Rust
50 lines
1.2 KiB
Rust
#![feature(decl_macro, proc_macro_hygiene)]
|
|
|
|
extern crate juniper;
|
|
extern crate juniper_rocket;
|
|
#[macro_use] extern crate rocket;
|
|
|
|
use rocket::response::content;
|
|
use rocket::State;
|
|
|
|
use juniper::tests::model::Database;
|
|
use juniper::{EmptyMutation, RootNode};
|
|
|
|
type Schema = RootNode<'static, Database, EmptyMutation<Database>>;
|
|
|
|
#[get("/")]
|
|
fn graphiql() -> content::Html<String> {
|
|
juniper_rocket::graphiql_source("/graphql")
|
|
}
|
|
|
|
#[get("/graphql?<request>")]
|
|
fn get_graphql_handler(
|
|
context: State<Database>,
|
|
request: juniper_rocket::GraphQLRequest,
|
|
schema: State<Schema>,
|
|
) -> juniper_rocket::GraphQLResponse {
|
|
request.execute(&schema, &context)
|
|
}
|
|
|
|
#[post("/graphql", data = "<request>")]
|
|
fn post_graphql_handler(
|
|
context: State<Database>,
|
|
request: juniper_rocket::GraphQLRequest,
|
|
schema: State<Schema>,
|
|
) -> juniper_rocket::GraphQLResponse {
|
|
request.execute(&schema, &context)
|
|
}
|
|
|
|
fn main() {
|
|
rocket::ignite()
|
|
.manage(Database::new())
|
|
.manage(Schema::new(
|
|
Database::new(),
|
|
EmptyMutation::<Database>::new(),
|
|
))
|
|
.mount(
|
|
"/",
|
|
routes![graphiql, get_graphql_handler, post_graphql_handler],
|
|
)
|
|
.launch();
|
|
}
|