Skip to content

Commit 4c76e93

Browse files
authored
Fix endpoint name typo in juniper_actix example, vol.2 (#977, #976)
1 parent 717c202 commit 4c76e93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

juniper_actix/examples/actix_server.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,10 @@ fn schema() -> Schema {
9494
}
9595

9696
async fn graphiql_route() -> Result<HttpResponse, Error> {
97-
graphiql_handler("/graphgl", None).await
97+
graphiql_handler("/graphql", None).await
9898
}
9999
async fn playground_route() -> Result<HttpResponse, Error> {
100-
playground_handler("/graphgl", None).await
100+
playground_handler("/graphql", None).await
101101
}
102102
async fn graphql_route(
103103
req: actix_web::HttpRequest,

0 commit comments

Comments
 (0)