619a2e57f9
* Added juniper_iron crate * Fixed up juniper_rocket crate * Updated juniper/Cargo.toml * Updated docs (readme, module docs) * Export http integrator tests with export-test-schema feature * Update CI tests (Use cargo-make ) * Format parts of the code base
45 lines
1.1 KiB
Rust
45 lines
1.1 KiB
Rust
#![feature(plugin)]
|
|
#![plugin(rocket_codegen)]
|
|
|
|
extern crate rocket;
|
|
extern crate juniper;
|
|
extern crate juniper_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();
|
|
}
|