2

如何使用 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.
4

1 回答 1

3

假设你没有使用 2.0.

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

于 2013-07-11T04:55:01.220 回答