如何在 neo4j 中将数组的字符串值转换为整数?

how to convert string values of an array to integer in neo4j?

我无法将数组的字符串值(例如 score:["1", "0"])转换为 Neo4j 中的整数。

我试过:

MATCH (n:Game {game_id:"1"})
RETURN toInteger(n.score[0])

此查询 returns 结果为 null 值。

我试过你的查询,但对我来说没问题。这是我的示例数据集:

CREATE (n:Game {game_id:"1", score:["1","0"]})

这是查询:

MATCH (n:Game {game_id:"1"})
RETURN toInteger(n.score[0])

它returns:

╒═══════════════════════╕
│"toInteger(n.score[0])"│
╞═══════════════════════╡
│1                      │
└───────────────────────┘