the description for this gist
val route: Route = | |
(post & path("graphql")){ | |
entity(as[JsValue]){ requestJson => | |
GraphQLServer.endpoint(requestJson) | |
} | |
} ~ { | |
getFromResource("graphiql.html") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment