Neo4jClient - 从Neo4jClient中创建索引?

时间:2014-02-04 15:42:22

标签: neo4jclient

有没有办法在Neo4jClient中创建索引?我做了一个原始查询,但不认为这是最好的选择。我之所以这样做是为了测试目的,我需要删除/重新创建数据库以测试不同设计的性能。

1 个答案:

答案 0 :(得分:4)

您可以执行以下索引:

graphClient.Cypher
    .Create("INDEX ON :Label(Property)")
    .ExecuteWithoutResults();

和约束如:

graphClient.Cypher
    .CreateUniqueConstraint("identity", "property")
    .ExecuteWithoutResults();

(最初来自How to Create a Node with Neo4jClient in Neo4j v2?