Hello,
I am using spring-boot-starter-data-neo4j to model my graph and i have :
@NodeEntity("App")
public class ApplicationEntity {
@Id
@GeneratedValue
Long id;
String name;
@Labels
List<String> nodeLabels;
@Relationship(type = "CALLS")
private List<ApplicationEntity> apps = new ArrayList<>();
}
When i get an ApplicationEntity and i do .getNodeLabels()
i dont have the App
label, i have all other labels but not the default one.
How can i get all labels include the default one.
Thank you.