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

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

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

@Deprecated
public class FetchedValue {

    private final MapOrList mapOrList;
    private final Object value;

    public FetchedValue(MapOrList parentResult, Object value) {
        this.mapOrList = parentResult;
        this.value = value;
    }

    public MapOrList getParentResult() {
        return mapOrList;
    }

    public Object getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy