codecamp

OrientDB移动顶点

在OrientDB中移动顶点命令是将一个或多个顶点从当前位置移动到不同的类或集群。 如果你对一个特定的顶点应用移动命令,那么它将更新连接到这个顶点的所有边。 如果您指定要移动顶点的集群,则它将顶点移动到目标集群的服务器所有者。
以下语句是移动顶点命令的基本语法。

MOVE VERTEX <source> TO <destination> 
[SET [<field>=<value>]* [,]] 
[MERGE <JSON>] 
[BATCH <batch-size>] 

以下是上述语法中的选项的详细信息。
<source>:定义要移动的顶点。 它接受顶点的记录ID或顶点的记录ID数组的记录ID。
<destination>:定义要移动顶点的位置。 它支持类或集群作为目标。
SET - 将值设置为字段。
MERGE - 通过JSON将值设置为字段。
BATCH - 定义批量大小。
注意:此命令更新所有连接的边,但不更新链接。 当使用Graph API时,建议使用连接到顶点的边。

尝试以下示例来了解如何移动顶点。
执行以下查询将记录ID为#11:2的单个顶点从其当前位置移动到类别员工。

orientdb> MOVE VERTEX #11:2 TO CLASS:Employee

如果上面的查询执行成功,你会得到下面的输出 

Move vertex command executed with result '[{old:#11:2, new:#13:0}]' in 0.022000 sec(s)

执行以下查询将一组顶点从类'Customer'移动到'Employee'类。

orientdb> MOVE VERTEX (SELECT FROM Customer) TO CLASS:Employee 

如果上述查询成功执行,您将得到以下输出。

Move vertex command executed with result '[{old:#11:0, 
new:#13:1},{old:#11:1, new:#13:2},{old:#11:2, new:#13:3}]' in 0.011000 sec(s)
OrientDB创建顶点
OrientDB删除顶点
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }