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

org.neo4j.rest.graphdb.query.CypherResult Maven / Gradle / Ivy

Go to download

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