提问者:小点点

如何在Neo4j中不使用标签的情况下使用Cypher查询语言在已经创建的节点上创建索引


如何使用Cypher查询语言在已经创建的节点上创建索引,而不使用Neo4j中的标签。我想要手动索引而不是自动索引。

我已键入查询

 CREATE INDEX ON :name(name);

并获得

   SyntaxException: string matching regex `$' expected but `O' found
==> 
==> Think we should have better error message here? Help us by sending this query to cypher@neo4j.org.
==> 
==> Thank you, the Neo4j Team.

共1个答案

匿名用户

假设您没有使用2.0。

您不能使用Cypher创建索引。您必须通过api(http://docs.neo4j.org/chunked/stable/indexing-create.html)或REST(http://docs.neo4j.org/chunked/stable/rest-api-indexes.html)手动创建它