2014-01-24 65 views
1

我在文檔中閱讀標籤可以是字符串或數字。然而,只用數字給出了一個錯誤:在Neo4j 2.0中,數字可以作爲標籤嗎?

start u=node(5) set u:1234 return labels(u); 

的錯誤是:

Invalid input '1': expected whitespace or an identifier (line 1, column 23) 

回答

3

Any non-empty unicode string can be used as a label name. In Cypher, you may need to use the backtick (`) syntax to avoid clashes with Cypher identifier rules.

以下是對源:source

我認爲你正在運行到一個暗號衝突。如果你這樣做它應該工作:

start u=node(5) 
set u:`1234` 
return labels(u); 
0

我面臨同樣的問題,終於讓我找到了解決辦法

使用重音符(`)

使用insert your number裏面

相關問題