org.neo4j.rest.graphdb.query.CypherResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-data-neo4j-rest Show documentation
Show all versions of spring-data-neo4j-rest Show documentation
pring Data Neo4j Wrapper for the Neo4j REST API, provides a Graph Database proxy for the remote invocation.
The newest version!
package org.neo4j.rest.graphdb.query;
import java.util.Collection;
import java.util.List;
import java.util.Map;
/**
* @author mh
* @since 25.09.14
*/
public interface CypherResult {
Collection getColumns();
Iterable> getData();
Map asMap();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy