我正在使用无法访问的程序生成的预定neo4j图形数据库,开发人员决定使用包含^
的属性名称-但是,每当我尝试生成包含以下内容的Cypher查询时我被告知该字符是非法的财产:
MATCH (n {^id:1}) RETURN n
产生
Neo.ClientError.Statement.SyntaxError: Invalid input '^': expected whitespace, a property key name, '}', an identifier or UnsignedDecimalInteger (line 1, column 11 (offset: 10))
如何在Cypher查询中使用该属性?