Fix build

This commit is contained in:
Christian Legnitto 2018-10-23 05:45:12 -06:00
parent 95dc436bb3
commit 3266c237e9

View file

@ -39,7 +39,7 @@ fn main() {
warp::serve(
warp::get2()
.and(warp::path("graphiql"))
.and(juniper_warp::graphiql_handler("/graphql"))
.and(juniper_warp::graphiql_filter("/graphql"))
.or(homepage)
.or(warp::path("graphql").and(graphql_filter))
.with(log),