I suspect `ContextWebFilter` which is not passing...
# graphql-kotlin
r
I suspect
ContextWebFilter
which is not passing the the original Reactor Context
Copy code
override fun filter(exchange: ServerWebExchange, chain: WebFilterChain): Mono<Void> =
    if (isApplicable(exchange.request.uri.path)) {
        mono {
            contextFactory.generateContext(exchange.request, exchange.response)
        }.flatMap { graphQLContext ->
            chain.filter(exchange).subscriberContext { it.put(GRAPHQL_CONTEXT_KEY, graphQLContext) }
        }
    } else {
        chain.filter(exchange)
    }