apoc.result.PathResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apoc Show documentation
Show all versions of apoc Show documentation
A collection of useful Neo4j Procedures
package apoc.result;
import org.neo4j.graphdb.Path;
/**
* @author mh
* @since 11.04.16
*/
public class PathResult {
public Path path;
public PathResult(Path path) {
this.path = path;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy