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.PublicApi;
import graphql.execution.ExecutionStepInfo;
import graphql.execution.ResultPath;

import java.util.List;

@Deprecated
@PublicApi
public class FetchedValues {

    private final List fetchedValues;
    private final ExecutionStepInfo executionStepInfo;
    private final ResultPath path;

    public FetchedValues(List fetchedValues, ExecutionStepInfo executionStepInfo, ResultPath path) {
        this.fetchedValues = fetchedValues;
        this.executionStepInfo = executionStepInfo;
        this.path = path;
    }

    public List getValues() {
        return fetchedValues;
    }

    public ExecutionStepInfo getExecutionStepInfo() {
        return executionStepInfo;
    }

    public ResultPath getPath() {
        return path;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy