I have some node that have multi label. they create with codes like this:
CREATE (a:Person:Student{name: 's1'})
CREATE (b:Person:Teacher{name: 't1'})
CREATE (a:Person:Employee{name: 'e1'})
CREATE (b:Person:officer{name: 't1'})
I have about 300 labels.
I want colorize graph with not common label(Person), actuality I want teacher and student have different color .
How can I do that?
I think when I return the nodes, don't return all labels other than Person the problem be solve. Are there any way to do this?