graphql.execution.batched.FetchedValues Maven / Gradle / Ivy
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