商店升级后在 Neo4j Web Client 中看不到标签节点
Can't see the label nodes in Neo4j Web Client after store upgrade
我在设置 Neo4j 时遇到了一些小问题。更准确地说,我的问题涉及我在这里找到的样本数据集:
http://neo4j.com/developer/example-data/
我下载了它(Jim Webber 的神秘博士数据集),解压到数据库目录,然后启动了 Neo4j。
我收到一条错误消息,因此我在配置文件中设置了 allow_store_upgrade=true
。
Neo4j 已启动,但遗憾的是我在 Web 客户端应用程序中看不到任何节点标签。
我确定应该有像 Character 或 Species 这样的标签。
我可以添加自己的标签,然后我就可以看到它们了。
match (n {character:'Doctor'})
set n :myTestLabel
return n
allow_store_upgrade=true
后原始标签丢失了吗?
我在 Windows 8.1
上使用 Neo4j 2.1.7
如果您有任何解决此问题的想法,请告诉我!
谢谢!
麦克
可能是原始数据是针对 Neo4j 1.9 的,还没有包含标签。如有必要,我会检查并更新数据集。
您可以通过 运行
列出现有标签
MATCH (n)
RETURN labels(n), count(*)
让我重新表述一下您的问题:"I am taking the pluralsight course 'Introduction to Graph Databases and Neo4j', I downloaded the DrWho database from GitHub, and I had to configure allow_store_upgrade=true
in order to start the database. But after starting it, I did not see any labels, even though in the course video there are labels. How do I get the labels?"
该问题的答案:课程讲师在讨论区(https://app.pluralsight.com/library/courses/graph-databases-neo4j-introduction/discussion)承认GitHub上的数据库没有标签,他在课程中使用的数据库实际上是它的修改版本。该修改后的版本位于课程的练习文件 zip 下载中。如果您下载该数据库的修改版本(并且 运行 allow_store_upgrade=true),您将看到标签。
首先尝试使用 2.3.9 版本并设置 allow_store_upgrade=true。它应该有效
我在设置 Neo4j 时遇到了一些小问题。更准确地说,我的问题涉及我在这里找到的样本数据集:
http://neo4j.com/developer/example-data/
我下载了它(Jim Webber 的神秘博士数据集),解压到数据库目录,然后启动了 Neo4j。
我收到一条错误消息,因此我在配置文件中设置了 allow_store_upgrade=true
。
Neo4j 已启动,但遗憾的是我在 Web 客户端应用程序中看不到任何节点标签。
我确定应该有像 Character 或 Species 这样的标签。
我可以添加自己的标签,然后我就可以看到它们了。
match (n {character:'Doctor'})
set n :myTestLabel
return n
allow_store_upgrade=true
后原始标签丢失了吗?
我在 Windows 8.1
上使用 Neo4j 2.1.7如果您有任何解决此问题的想法,请告诉我!
谢谢!
麦克
可能是原始数据是针对 Neo4j 1.9 的,还没有包含标签。如有必要,我会检查并更新数据集。
您可以通过 运行
列出现有标签MATCH (n)
RETURN labels(n), count(*)
让我重新表述一下您的问题:"I am taking the pluralsight course 'Introduction to Graph Databases and Neo4j', I downloaded the DrWho database from GitHub, and I had to configure allow_store_upgrade=true
in order to start the database. But after starting it, I did not see any labels, even though in the course video there are labels. How do I get the labels?"
该问题的答案:课程讲师在讨论区(https://app.pluralsight.com/library/courses/graph-databases-neo4j-introduction/discussion)承认GitHub上的数据库没有标签,他在课程中使用的数据库实际上是它的修改版本。该修改后的版本位于课程的练习文件 zip 下载中。如果您下载该数据库的修改版本(并且 运行 allow_store_upgrade=true),您将看到标签。
首先尝试使用 2.3.9 版本并设置 allow_store_upgrade=true。它应该有效