R&D 524

Graph DB Neo4J

Graph DB정의 Cypher Query명령어 start 그래프에서 출발점 match create 노드 및 관계를 생성 delete 노드 및 관계, 속성을 제거 python driver Version >=3 이상을 권장한다.pip install py2neo Database 에 접속하기 from py2neo import Graphgraph = Graph(host="192.168.1.145", password="1234") 노드를 생성create (company {name:"MyCompany"}) return company; Reference주요 명령어 http://woner.tistory.com/25py2neo http://py2neo.org/v4/database.html

R&D/database 2018.04.08