Package-level declarations

Functions

Link copied to clipboard
fun apolloHandler(    executableSchema: ExecutableSchema,     coroutineContext: (Request) -> CoroutineContext = { EmptyCoroutineContext },     executionContext: (Request) -> ExecutionContext = { ExecutionContext.Empty }): HttpHandler
Link copied to clipboard
fun apolloRoutingHttpHandler(    executableSchema: ExecutableSchema,     path: String = "/graphql",     coroutineContext: (Request) -> CoroutineContext = { EmptyCoroutineContext },     executionContext: (Request) -> ExecutionContext = { ExecutionContext.Empty }): RoutingHttpHandler
Link copied to clipboard
fun apolloSandboxRoutingHttpHandler(    title: String = "API sandbox",     sandboxPath: String = "/sandbox",     graphqlPath: String = "/graphql"): RoutingHttpHandler
Link copied to clipboard
fun apolloWebSocketHandler(    executableSchema: ExecutableSchema,     executionContext: (Websocket) -> ExecutionContext = { ExecutionContext.Empty }): WsHandler