from py2neo import ogm!
!
# Create a User & Project!
store = ogm.Store(db)!
u = User("Janet", "[email protected]")!
p = Project(“open-unicorn")!
!
store.save_unique("User", "email", u.email, u)!
store.save_unique("project", "name", p.name, p)!
store.relate(u, ”CONTRIBUTES_TO”, p)!
store.save(u)!