[Solved] How do I add a linked document to a linked list using the Java API for OrientDB?

create class Doc create class ParentDoc create property ParentDoc.children LINKLIST insert into Doc set name=”doc1″ #12:0 insert into Doc set name=”doc2″ #12:1 insert into ParentDoc set name=”pd”, children = [#12:0] #13:0 update #13:0 add children = #12:1 For what I understood you want a piece of code that replaces the last four commands using Java … Read more