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

graphql.spring.web.reactive.components.DefaultExecutionInputCustomizer Maven / Gradle / Ivy

package graphql.spring.web.reactive.components;

import graphql.ExecutionInput;
import graphql.Internal;
import graphql.spring.web.reactive.ExecutionInputCustomizer;
import org.springframework.stereotype.Component;
import org.springframework.web.server.ServerWebExchange;
import reactor.core.publisher.Mono;

@Component
@Internal
public class DefaultExecutionInputCustomizer implements ExecutionInputCustomizer {

    @Override
    public Mono customizeExecutionInput(ExecutionInput executionInput, ServerWebExchange webRequest) {
        return Mono.just(executionInput);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy