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

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

There is a newer version: 230521-nf-execution
Show newest version
package graphql.execution.batched;

import graphql.execution.ExecutionPath;
import graphql.execution.ExecutionTypeInfo;

import java.util.List;

public class FetchedValues {

    private final List fetchedValues;
    private final ExecutionTypeInfo executionTypeInfo;
    private final ExecutionPath path;

    public FetchedValues(List fetchedValues, ExecutionTypeInfo executionTypeInfo, ExecutionPath path) {
        this.fetchedValues = fetchedValues;
        this.executionTypeInfo = executionTypeInfo;
        this.path = path;
    }

    public List getValues() {
        return fetchedValues;
    }

    public ExecutionTypeInfo getExecutionTypeInfo() {
        return executionTypeInfo;
    }

    public ExecutionPath getPath() {
        return path;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy