エッジのない任意の OrientDB レコードのコピーを作成する方法はありますか? レコードをコピーするための元のコマンド (ドキュメントから) を変更し、それに fetchplan を追加しましたが、機能しません (率直に言って、この特定のコマンドの解析に問題があるように見えますが、間違っていることを願っています)。
これは正常に実行されますが、エッジは残ります。
insert into Test from select from Test where @rid=#102:119 fetchplan in_*:-2 out_*:-2
これはエラーを出します:
insert into Test from (select from Test where @rid=#102:119 fetchplan in_*:-2 out_*:-2)
com.orientechnologies.orient.core.command.OCommandExecutorNotFoundException: Cannot find a command executor for the command request: sql.(SELECT FROM Test WHERE @rid = #102:119 FETCHPLAN in_*:-2 out_*:-2)
のようなものも試しました
insert into Test content (select @this.toJSON('fetchPlan:in_*:-2 out_*:-2') from Test where @rid=#102:119)
しかし、それもうまくいきません。何かご意見は?Orient 2.1.x を使用しています