在处理Cypher中的属性时,可以使用正则表达式来匹配属性值,如下所示:
Match (n)-[:IS_A]-() where (n:Course_Driving_001) and (n.name =~ '(?i).*criteria.*' or n.description =~ '(?i).*criteria.*') return distinct n limit 20;
我想用标签名称做同样的事情。我想获得包含特定字符串的所有唯一标签。类似的东西:
Match (n)-[:IS_A]-() where (n:Course_*_001) return distinct n;
这可以做到Cypher吗?还是RestAPI?正则表达式?
我正在使用Neo4j 2.0版本。
答案 0 :(得分:8)
您无法在标签上直接使用正则表达式。但是,使用labels
函数可以实现:
MATCH (n)-[:IS_A]->()
WHERE any(l IN labels(n) WHERE l=~'Course_*_001')
RETURN distinct n;
请注意,此查询可能很昂贵,因为它会触及数据库中的所有节点。您可能希望重构数据模型以使用多个标签,例如Course
和 Course_xyz_001
。在这种情况下,您可以使用MATCH (n:Course) ....
来减少首先访问的节点数。