为 Neo4jClient 中创建的节点分配标签

Assigning a label to a created node in Neo4jClient

我想使用 Neo4jClient 创建一些类型为 Person 和 Books 的节点。

为此,我有 class 个这样的人:

Public Class Person
{
      Public String Name;    
}

为了创建节点,我写了这样的东西:

Var RefA = client.Create(new Person(){Name ="John"});

(客户端 -> GraphicClient)

当我在Neo4j web 界面中看到创建的节点时,没有为创建的节点分配标签。我以为 Person 会是标签。如何使用 Neo4jClient 为创建的节点分配标签。我想要像 'Match(n:Person)' 这样的查询,但是因为没有创建类型,所以不可能这样做。

非常感谢。

这个确切的场景在文档中:https://github.com/Readify/Neo4jClient/wiki/cypher-examples#create-a-user