You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is expected behavior. @RelationshipProperties classes are no entities and don't carry externally generated IDs (such as UUIDs). The only supported generated ID value on them is
@Id@GeneratedValueprivateLongid;
which corresponds to the id assigned via Neo4j (the database). Quoting the docs (since 6.0.4)
You should define a property for the generated, internal ID so that SDN can determine during save which relationships can be safely overwritten without losing properties. A generated id property is optional in SDN 6.0.4 and upwards and will be required in SDN 6.1 for @RelationshipProperties.
Hi,
Spring Boot 2.4.2, SDN 6.0.3
Im trying to save a Node which has an Outgoing Relationship with UUID as its ID.
This results in the relationship not saving the UUID.
The text was updated successfully, but these errors were encountered: