动态获取节点neo4j的属性



这是我的neo4jrepository方法

@Query("match (pofr:NODE) where pofr.param1= {param1} return pofr.{param2}, pofr.param3")
    List<Node> getPropertiesOfNode(@Param("param1") String param1, @Param("param2") String param2);

exceptionlogs:

    Error executing Cypher; Code: Neo.ClientError.Statement.SyntaxError; Description: Invalid input '{': expected an identifier, whitespace, a function name or a property key name (line 1, column 64 (offset: 63))
"match (pofr:NODE) where pofr.param1 = {param1} return pofr.{param2}, pofr.param3"
                                                                ^; nested exception is org.neo4j.ogm.exception.CypherException: Error executing Cypher; Code: Neo.ClientError.Statement.SyntaxError; Description: Invalid input '{': expected an identifier, whitespace, a function name or a property key name (line 1, column 64 (offset: 63))

我在尝试动态填充属性数据时面临问题。我们还有其他方法可以实现这一目标吗?

由于Cypher不支持这些位置的占位符,因此不可能在Spring Data Neo4J中解决此问题。

最新更新