Suppose I need to create unique node with email,
If I run the following code, it will creat 2 nodes with the same email
person_nod = Node("person", email="bob123@gmail.com")
graph.create(person_nod)
person_nod = Node("person", email="bob123@gmail.com")
graph.create(person_nod)
I have no idea how to avoid the duplicated node with neo4j