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

apoc.result.NodeResultWithStats Maven / Gradle / Ivy

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

import org.neo4j.graphdb.Node;

import java.util.Map;


public class NodeResultWithStats extends NodeResult {
    public final Map stats;

    public NodeResultWithStats(Node node, Map stats) {
        super(node);
        this.stats = stats;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy