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

graphql.execution.batched.GraphQLExecutionNodeValue Maven / Gradle / Ivy

The newest version!
package graphql.execution.batched;

public class GraphQLExecutionNodeValue {

    private final GraphQLExecutionResultContainer resultContainer;
    private final Object value;

    public GraphQLExecutionNodeValue(GraphQLExecutionResultContainer resultContainer, /*Nullable*/ Object value) {
        this.resultContainer = resultContainer;
        this.value = value;
    }

    public GraphQLExecutionResultContainer getResultContainer() {
        return resultContainer;
    }

    /*Nullable*/
    public Object getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy