有没可能通过属性值反查属性名?
比如官方的例子里的
CREATE (JoeVersustheVolcano:Movie {title:'Joe Versus the Volcano', released:1990, tagline:'A story of love, lava and burning desire.'})
然后(这样写会报错)
match (x:Movie) where y(x) = "Joe Versus the Volcano" return x,y
我希望能在Movie节点中,找到满足包含这个属性值【Joe Versus the Volcano】的节点和属性名字
这样是可以实现的么?
3 回复