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

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

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

import java.util.List;

public class GraphQLExecutionResultList extends GraphQLExecutionResultContainer {

    private final List results;

    public GraphQLExecutionResultList(List results) {
        this.results = results;
    }

    @Override
    public void putResult(String fieldName, Object value) {
        results.add(value);
    }
}