Neo4j Cypher node filtering by pattern comprehension
问题 I have a following SDN 4 entities: Decision , Characteristic and Value : @NodeEntity public class Value extends Votable { private final static String SET_FOR = "SET_FOR"; private final static String SET_ON = "SET_ON"; private final static String CONTAINS = "CONTAINS"; @Relationship(type = SET_FOR, direction = Relationship.OUTGOING) private Decision decision; @Relationship(type = SET_ON, direction = Relationship.OUTGOING) private Characteristic characteristic; @Index(unique = false) private