diff --git a/juniper_actix/examples/actix_server.rs b/juniper_actix/examples/actix_server.rs index 91848050d..5a13b79a2 100644 --- a/juniper_actix/examples/actix_server.rs +++ b/juniper_actix/examples/actix_server.rs @@ -94,10 +94,10 @@ fn schema() -> Schema { } async fn graphiql_route() -> Result { - graphiql_handler("/graphgl", None).await + graphiql_handler("/graphql", None).await } async fn playground_route() -> Result { - playground_handler("/graphgl", None).await + playground_handler("/graphql", None).await } async fn graphql_route( req: actix_web::HttpRequest,