使用node-neo4j&读取节点时出现问题使用neo4j-shell调试技巧

时间:2014-08-26 21:30:13

标签: node.js neo4j node-neo4j

我是Neo4J的新手。到目前为止,我成功安装并启动了Neo4J服务器,并通过运行命令neo4j status进行了检查。

使用node-neo4j驱动程序添加&将节点更新到数据库。

在我的nodejs服务器中,我创建了一个新数据库:

db = new neo4j("http://127.0.0.1:7474");

接下来,我插入一个新节点:

db.insertNode( {"name": "Darth Vader","sex": "male"}, (err, node) ->
  if err then throw err
  console.log "Insert node"
  console.log node
)

插入新节点时,我没有遇到任何错误。但是,当我尝试读取此节点时

db.readNode( {"name": "Darth Vader"}, (err, node) ->
  if err then throw err; # 48th line of server.js
  console.log "Read node"
  console.log node
)

ReadNode函数在第48行抛出以下异常(您可以在上面给出的代码片段中找到第48行)。

server.js:48
        throw err;
              ^
Error: HTTP Error 500 occurred while reading a node.
    at node_modules/node-neo4j/main.js:151:15
    at Request.callback (node_modules/node-neo4j/node_modules/superagent/lib/node/index.js:656:3)
    at Request.<anonymous> (node_modules/node-neo4j/node_modules/superagent/lib/node/index.js:131:10)
    at Request.emit (events.js:95:17)
    at IncomingMessage.<anonymous> (node_modules/node-neo4j/node_modules/superagent/lib/node/index.js:802:12)
    at IncomingMessage.emit (events.js:117:20)
    at _stream_readable.js:929:16
    at process._tickCallback (node.js:419:13)

然后,我尝试通过检查我的数据库来调试我的进程并尝试neo4j-shell并在命令行上键入dbinfo,我希望看到我的数据库和已经插入的Darth Vader节点。

但是,dbinfo根本不会返回任何内容!

如何使用neo4j-shell查找此数据库和此数据库中的节点?

如何确保我成功插入节点?如何读取已插入的节点?

你有什么想法吗?

提前谢谢!

1 个答案:

答案 0 :(得分:2)

要说清楚:有两个node-neo4j版本:

https://github.com/philippkueng/node-neo4j

https://github.com/thingdom/node-neo4j

您使用的是philippkueng版本:db.readNode仅适用于nodeId。我认为你应该使用db.cypherQuery()和cypher语句来查询neo4j数据库。

例如:

db.cypherQuery('MATCH (n {name: "Darth Vader"}) RETURN n', 
function(err, result){
  if(err) throw err;

  console.log(result.data); // delivers an array of query results
  console.log(result.columns); // delivers an array of names of objects getting returned
});

您是否希望在没有Cypher的情况下使用标签和索引来查找可以使用此节点的节点:

// add Darth Vader with the label Person
db.insertNode( {name: 'Darth Vader',sex: 'male'}, 'Person',
  function(err, node) {})

db.readNodesWithLabelsAndProperties('Person', {name: 'Darth Vader'}, 
  function (err, result) {})

为了调试@codewithcheese已经提到使用Neo4j浏览器:

http://localhost:7474