命令 - GREMLIN
在命令行使用Gremlin语言执行命令。
Gremlin是一种遍历图的语言。OrientDB支持命令行,API和一个脚本 $ORIENTDB_HOME/bin/gremlin.sh
执行Gremlin语言。
语法
GREMLIN <command>
<command>
定义想知道的命令
注意: OrientDB把Gremlin命令当做多行输入来解析,敲入
end
(大小写敏感)时,才会执行。
例子
使用Gremlin创建一个顶点:
orientdb>
GREMLIN v1 = g.addVertex();
[Started multi-line command. Type just 'end' to finish and execute.] orientdb>end
v[#9:0] Script executed in 0,100000 sec(s).
更多Gremlin信息,参考 Gremlin。