如何使用 Gremlin 在 orientdb 中创建自定义 类

How to create custom classes in orientdb using Gremlin

我想要 SQL 中此语法的等价物:

create class Person extends V

在 Gremlin

我不确定是否可以通过 Gremlin 操作 OrientDB 模式。 Gremlin 独立于 OrientDB,不适应模式,因为并非所有图形数据库都支持模式。

要在 OrientDB 中添加特定 class 的顶点,您可以使用图形 API(参见 doc)。如果您在 class 的名称前添加字符串 class:,您将创建此 class.

的顶点
graph.addVertex("class:User");

此代码段将创建 class User 的顶点。希望对你有所帮助。