apoc.result.RowResult 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 java.util.Map;
/**
* @author mh
* @since 26.02.16
*/
public class RowResult {
public final Map row;
public RowResult(Map row) {
this.row = row;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy