All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.javalin.plugin.graphql.context.EmptyWsGraphQLContextFactory.kt Maven / Gradle / Ivy

There is a newer version: 4.6.8
Show newest version
package io.javalin.plugin.graphql.context

import com.expediagroup.graphql.server.execution.GraphQLContextFactory
import io.javalin.websocket.WsMessageContext

class EmptyWsGraphQLContextFactory : GraphQLContextFactory {
    override suspend fun generateContext(request: WsMessageContext): EmptyGraphQLContext {
        return EmptyGraphQLContext()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy