Skip to content

Commit 717c202

Browse files
authored
Fix endpoint name typo in juniper_actix example (#976)
1 parent 74afe4c commit 717c202

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

juniper_actix/examples/actix_server.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ async fn main() -> std::io::Result<()> {
128128
.wrap(middleware::Compress::default())
129129
.wrap(middleware::Logger::default())
130130
.service(
131-
web::resource("/graphgl")
131+
web::resource("/graphql")
132132
.route(web::post().to(graphql_route))
133133
.route(web::get().to(graphql_route)),
134134
)

0 commit comments

Comments
 (0)