apoc.result.RelationshipResultWithStats 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.Relationship;
import java.util.Map;
public class RelationshipResultWithStats extends RelationshipResult {
public final Map stats;
public RelationshipResultWithStats(Relationship relationship, Map stats) {
super(relationship);
this.stats = stats;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy