Package org.neo4j.rest.graphdb.query

Examples of org.neo4j.rest.graphdb.query.RestCypherQueryEngine


                    columns = result.columns();
                    iterator = result.iterator();
                }
                else if ( currentAlias.getConnectionMode() == ConnectionMode.REMOTE )
                {
                    Iterable<Map<String, Object>> execute = new RestCypherQueryEngine(( (RestGraphDatabase) graphDb ).getRestAPI()).query(cypherQuery,
                            new HashMap<String, Object>() );
                    iterator = execute.iterator();
                }

                final LinkedList<Map<String, Object>> resultList = new LinkedList<Map<String, Object>>();
View Full Code Here

TOP

Related Classes of org.neo4j.rest.graphdb.query.RestCypherQueryEngine

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.