graphql.execution.batched.FetchedValues Maven / Gradle / Ivy
package graphql.execution.batched;
import graphql.execution.ExecutionPath;
import graphql.execution.ExecutionStepInfo;
import java.util.List;
@Deprecated
public class FetchedValues {
private final List fetchedValues;
private final ExecutionStepInfo executionStepInfo;
private final ExecutionPath path;
public FetchedValues(List fetchedValues, ExecutionStepInfo executionStepInfo, ExecutionPath path) {
this.fetchedValues = fetchedValues;
this.executionStepInfo = executionStepInfo;
this.path = path;
}
public List getValues() {
return fetchedValues;
}
public ExecutionStepInfo getExecutionStepInfo() {
return executionStepInfo;
}
public ExecutionPath getPath() {
return path;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy