Hi,
I have a @NodeEntity Class with multiple fields annotated with "@Indexed(unique = true)" (see below). I'd like these fields to be unique.
When I try to persist the Object with GraphRepository, I get the following exception:
if I have single field with this annotation there is no exceptions, (only for multiple fields).
What is causing this ? How do i make these fields unique?
I have a @NodeEntity Class with multiple fields annotated with "@Indexed(unique = true)" (see below). I'd like these fields to be unique.
When I try to persist the Object with GraphRepository, I get the following exception:
Code:
Exception in thread "main" org.springframework.data.mapping.model.MappingException: Duplicate unique property userId, username has already been defined. Only one unique property is allowed per type
What is causing this ? How do i make these fields unique?
Code:
private int userId;
@Indexed(unique = true) private String name;
@Indexed(unique = true) private String username;
@Indexed(unique = true) private String emailAddress;