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

apoc.result.GraphResult Maven / Gradle / Ivy

There is a newer version: 5.25.1
Show newest version
package apoc.result;

import org.neo4j.graphdb.Node;
import org.neo4j.graphdb.Relationship;

import java.util.List;

/**
 * @author mh
 * @since 26.02.16
 */
public class GraphResult {
    public final List nodes;
    public final List relationships;

    public GraphResult(List nodes, List relationships) {
        this.nodes = nodes;
        this.relationships = relationships;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy