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

apoc.result.RelationshipResultWithStats Maven / Gradle / Ivy

There is a newer version: 5.25.1
Show newest version
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