这是否可以将节点属性作为 json 原始字符串并使用 cypher 对其进行过滤?我有一个具有一些已定义属性和元数据(json 原始字符串)的节点。我想选择或过滤这些元数据属性。这是这样的:
START movie=node:TYPE_INDEX(Type = 'MOVIE') // Start with the reference
MATCH movie-[t:TAG]->tag
WHERE collect(movie.Metadata).RatingPress > 3
RETURN distinct movie.Label
元数据是这样的:
{"RatingPress" : "0","RatingSpectator" : 3"}
我希望使用 collect 函数来调用这样的属性:
collect(movie.Metadata).RatingPress
但是,当然失败了……
这是一种将节点属性中的一些 json 字符串与 cypher 绑定的方法吗?
谢谢你的帮助