我是新來的Neo4j,我被困在一個簡單的問題:neo4j的這個創建語句語法有什麼問題?
create (machine1:host);
match (n) where n.host='machine1' return n;
匹配失敗。當使用解釋我看到這個:
The provided property key is not in the database
One of the property names in your query is not available in the database, make sure you didn't misspell it or that the label is available when you run this statement in your application (the missing property name is: host)
我做錯了什麼?感謝大家的時間。
我要注意:我使用的是社區版,版本3.2.1上述行作爲在原本空白的新數據庫所使用的前兩行。 – ewm