标签: neo4j graph-databases spring-data-neo4j
我似乎无法让这个查询起作用。我想要做的就是在我的数据库中查找与Category和Keyword匹配的节点。
Category
Keyword
match (n:SiteEntry)-[r:ClassifiedAs]->(c:Category)<-[h:HasKeyword]->(k:Keyword) where c.Label=~'.*Business.*' AND k.Keyword=~'a.*' return n.Url, c.Label, k.Keyword limit 100
由于