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

apoc.result.RelationshipResult Maven / Gradle / Ivy

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

import org.neo4j.graphdb.Relationship;

/**
 * @author mh
 * @since 26.02.16
 */
public class RelationshipResult {
    public final Relationship rel;

    public RelationshipResult(Relationship rel) {
        this.rel = rel;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy