cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Modifying related nodes before saving them

Consider a class like this:

class A {
	...
	@Relationship(type="RELATED_TO")
	List<B> bs;
	...
}

When saving an A, how can I perform some modifications to the "B"s before saving them? (Something like @Convert but for @Relationship not a simple attribute). One application may be to set an order attribute in the nodes corresponding to "B"s (See here).

0 REPLIES 0