Found that Moqui can work with OrientDB. Being new to both Moqui and graph database, my question is: how to put Vertex and edge in Moqui's entity? I mean, in RDMS, If I want to record different people, I can put some thing like:
<entity entity-name="Person" package-name="person">
<field name="personId" type="id" is-pk="true"/>
<field name="name" type="text-long"/>
If I want to creat vertex of different person in OrientDB, how to write the entity?
And how to creat edge in XML code?
Thank you.