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

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

package graphql.execution.batched;

import graphql.language.Field;
import graphql.schema.GraphQLObjectType;

import java.util.List;
import java.util.Map;

class GraphQLExecutionNode {

    private final GraphQLObjectType parentType;
    private final Map> fields;
    private final List data;

    public GraphQLExecutionNode(GraphQLObjectType parentType,
                                Map> fields,
                                List data) {
        this.parentType = parentType;
        this.fields = fields;
        this.data = data;
    }

    public GraphQLObjectType getParentType() {
        return parentType;
    }

    public Map> getFields() {
        return fields;
    }

    public List getData() {
        return data;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy