Access neo4j nodes and relationships through java

点点圈 提交于 2019-12-25 00:37:58

问题


I have already loaded 50k nodes and established relationships between them through talend. I wrote java code to connect to neo4j and try to execute cypher query. It is connecting to neo4j but showing wrong results. My java code is:

package com.Neo4J;

import org.neo4j.cypher.javacompat.ExecutionEngine;
import org.neo4j.cypher.javacompat.ExecutionResult;
import org.neo4j.graphdb.GraphDatabaseService;
import org.neo4j.graphdb.Transaction;
import org.neo4j.graphdb.factory.GraphDatabaseFactory;

public class CaseNeo4J {

private static final String Neo4J_DBPath="/neo4j-community-1.9.2/data/graph.db";
GraphDatabaseService gdb;

public void connect(){

    gdb = new GraphDatabaseFactory().newEmbeddedDatabase(Neo4J_DBPath);
    Transaction transaction = gdb.beginTx();
    ExecutionEngine engine = new ExecutionEngine(gdb);
    ExecutionResult result = engine.execute( "start n=node(*) return n");
    System.out.println(result.dumpToString());
}

public static void main(String[] args) {

    CaseNeo4J neoobj = new CaseNeo4J();
    neoobj.connect();

}
}

outputs as :
+-----------+
| n         |
+-----------+
| Node[0]{} |
+-----------+
1 row

Actully it should show 50000 nodes but it is showing ony 1... Any idea?


回答1:


Sorry if my inswer is too obvious but have you tried with: MATCH(n) RETURN n as the query?



来源:https://stackoverflow.com/questions/18016140/access-neo4j-nodes-and-relationships-through-java

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!