apoc.result.VirtualPathResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apoc-common Show documentation
Show all versions of apoc-common Show documentation
Data types package for Neo4j Procedures
package apoc.result;
import org.neo4j.graphdb.Node;
import org.neo4j.graphdb.Relationship;
/**
* @author mh
* @since 26.02.16
*/
public class VirtualPathResult {
public final Node from;
public final Relationship rel;
public final Node to;
public VirtualPathResult(Node from, Relationship rel, Node to) {
this.from = from;
this.rel = rel;
this.to = to;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy