I\'m new to Neo4J and I have, probably an easy question.
There\'re NodeEntitys in my application, a property (name) is annotated with @Indexed(unique = true) to achi
If you are using SDN 3.2.0+ use the failOnDuplicate attribute:
public class Role extends BaseEntity { @Indexed(unique = true, failOnDuplicate = true) private String name; ... }