updated documentation and tutorial
This commit is contained in:
@@ -7,6 +7,14 @@
|
||||
entities that make common tasks easier. Unfortunately these methods are not generified yet, so the
|
||||
results have to be casted to the correct return type.
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term>persisting the node-entity initially and after changes outside of a transaction,
|
||||
persist participates in a transaction or creates its own implict transaction.
|
||||
</term>
|
||||
<listitem>
|
||||
<para><code>nodeEntity.persist()</code></para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>accessing node and relationship ids</term>
|
||||
<listitem>
|
||||
@@ -26,17 +34,29 @@
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>creating relationships to a target node entity</term>
|
||||
<term>creating relationships to a target node entity and returning the relationship-entity instance</term>
|
||||
<listitem>
|
||||
<para><code>nodeEntity.relateTo(targetEntity, relationshipClass, relationshipType)</code></para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>retrieving a single relationship</term>
|
||||
<term>retrieving a single relationship-entity</term>
|
||||
<listitem>
|
||||
<para><code>nodeEntity.getRelationshipTo(targetEnttiy, relationshipClass, relationshipType)</code></para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>creating relationships to a target node entity and returning the relationship</term>
|
||||
<listitem>
|
||||
<para><code>nodeEntity.relateTo(targetEntity, relationshipType)</code></para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>retrieving a single relationship</term>
|
||||
<listitem>
|
||||
<para><code>nodeEntity.getRelationshipTo(targetEnttiy, relationshipType)</code></para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>removing a single relationship</term>
|
||||
<listitem>
|
||||
|
||||
Reference in New Issue
Block a user