建立
建立一個節點
CREATE (neo:Company) //create node with label 'Company'
CREATE (neo:Company {name: 'Neo4j', hq: 'San Mateo'}) //create node with properties
建立關係
CREATE (beginning_node)-[:edge_name{Attribute:1, Attribute:'two'}]->(ending_node)
查詢模板
在瀏覽器 GUI(預設: http:// localhost:7474 / browser /)中本地執行 neo4j,你可以執行以下命令來獲取查詢調色盤。
:play query template
這有助於你通過鍵入查詢開始建立和合並節點和關係。