我无法将数组的字符串值(例如score:["1", "0"]
)转换为Neo4j中的Integer。
我试过了:
MATCH (n:Game {game_id:"1"})
RETURN toInteger(n.score[0])
此查询返回null
值。
答案 0 :(得分:0)
我尝试了你的查询,但它对我来说很好。这是我的示例数据集:
CREATE (n:Game {game_id:"1", score:["1","0"]})
这是查询:
MATCH (n:Game {game_id:"1"})
RETURN toInteger(n.score[0])
它返回:
╒═══════════════════════╕
│"toInteger(n.score[0])"│
╞═══════════════════════╡
│1 │
└───────────────────────┘