We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4a3240 commit c9f9233Copy full SHA for c9f9233
examples/server.rs
@@ -22,7 +22,7 @@ fn main() {
22
let graphql_endpoint = GraphQLHandler::new(context_factory, Query { }, Mutation { });
23
let graphiql_endpoint = GraphiQLHandler::new("/graphql");
24
25
- mount.mount("/graphiql", graphiql_endpoint);
+ mount.mount("/", graphiql_endpoint);
26
mount.mount("/graphql", graphql_endpoint);
27
28
let (logger_before, logger_after) = Logger::new(None);
0 commit comments