Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions juniper_actix/examples/actix_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@ fn schema() -> Schema {
}

async fn graphiql_route() -> Result<HttpResponse, Error> {
graphiql_handler("/graphgl", None).await
graphiql_handler("/graphql", None).await
}
async fn playground_route() -> Result<HttpResponse, Error> {
playground_handler("/graphgl", None).await
playground_handler("/graphql", None).await
}
async fn graphql_route(
req: actix_web::HttpRequest,
Expand Down