在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 Release.